aboutsummaryrefslogtreecommitdiff
path: root/menu.css
diff options
context:
space:
mode:
authorJoris Guyonvarch2015-06-27 01:04:51 +0200
committerJoris Guyonvarch2015-06-27 01:04:51 +0200
commit6ec9a6fc1d43c8d2a1495e147157dc545175b129 (patch)
tree9e9809a02c937e6a95eb9c63890a945a250ffa11 /menu.css
parentb590ca0aea8bbae34885e98b59bc465c09400ca3 (diff)
downloadmakeup-6ec9a6fc1d43c8d2a1495e147157dc545175b129.tar.gz
makeup-6ec9a6fc1d43c8d2a1495e147157dc545175b129.tar.bz2
makeup-6ec9a6fc1d43c8d2a1495e147157dc545175b129.zip
Generate static pages with a watcher and serve files with a simple http server
Diffstat (limited to 'menu.css')
-rw-r--r--menu.css92
1 files changed, 0 insertions, 92 deletions
diff --git a/menu.css b/menu.css
deleted file mode 100644
index 00684e2..0000000
--- a/menu.css
+++ /dev/null
@@ -1,92 +0,0 @@
-nav {
- position: relative;
- font-family: NothingYouCouldSay;
- font-size: 21px;
- z-index: 1;
-}
-
-nav ul {
- position: absolute;
-}
-
-nav > ul {
- width: 900px;
- display: table;
- table-layout: fixed;
-}
-
-nav > ul > li:first-child > a {
- border-top-left-radius: 10px;
- border-bottom-left-radius: 10px;
-}
-
-nav ul ul li:last-child a {
- border-bottom-left-radius: 10px;
- border-bottom-right-radius: 10px;
-}
-
-nav > ul > li:last-child a:first-child {
- border-top-right-radius: 10px;
- border-bottom-right-radius: 10px;
-}
-
-nav li {
- display: table-cell;
- margin-bottom: 0px;
- margin-left: 0px;
-}
-
-nav li:before {
- content: "" !important;
- margin-left: 0px !important;
-}
-
-nav ul ul li {
- display: block;
- float: none;
- min-width: 150px;
-}
-
-nav a {
- text-align: center;
- color: white;
- text-decoration: none;
- display: block;
- margin-left: 1px;
- margin-right: 1px;
-}
-
-nav > ul > li > a {
- height: 50px;
- line-height: 50px;
- background-color: #333333;
-}
-
-nav > ul > li:hover > a {
- background-color: #777777;
-}
-
-nav ul ul a {
- transition: opacity 0.2s ease;
- visibility: hidden;
- opacity: 0;
- height: 0px;
- line-height: 0px;
-
- background-color: #EEEEEE;
- padding: 0 20px;
- color: black;
-}
-
-nav ul li:hover a {
- visibility: visible;
- opacity: 1;
- height: 50px;
- line-height: 50px;
-}
-
-nav a:hover {
- transition: all 0.2s ease;
- background-color: #777777;
- color: white;
-}