Team:Uppsala/navbar.css
From 2014.igem.org
Line 3: | Line 3: | ||
display: block; | display: block; | ||
- | + | width: 100%; | |
margin-left: auto; | margin-left: auto; | ||
margin-right: auto; | margin-right: auto; | ||
Line 21: | Line 21: | ||
background: red; | background: red; | ||
- | + | width:100%; | |
list-style: none; | list-style: none; | ||
position: relative; | position: relative; |
Revision as of 14:36, 23 June 2014
/* Navbar code begins */ nav {
display: block; width: 100%; margin-left: auto; margin-right: auto;
background: white;
}
nav ul ul { display: none; }
nav ul li:hover > ul { display: block; }
nav ul {
background: red; width:100%; list-style: none; position: relative; display: inline-table; } nav ul:after { content: ""; clear: both; display: block; }
nav ul li {
width:12.5%;
float: left; padding: 0; margin: 0;
} nav ul li:hover { background: #4b545f;
} nav ul li:hover a { color: #fff; }
nav ul li a { display: block; padding: 17px 24.45px; color: #fff; text-decoration: none; }
nav ul ul { background: #5f6975; border-radius: 0px; padding: 0; position: absolute; top: 100%; } nav ul ul li { float: none; border-top: 1px solid #6b727c; border-bottom: 1px solid #575f6a; position: relative; } nav ul ul li a { padding: 15px 28.45px; color: #fff; } nav ul ul li a:hover { background: #4b545f; }
nav ul ul ul { position: absolute; left: 100%; top:0; }
/* Navbar code ends */