Team:Uppsala/navbar.css

From 2014.igem.org

(Difference between revisions)
Line 39: Line 39:
nav ul li:hover {
nav ul li:hover {
background: #4b545f;
background: #4b545f;
 +
width:100%;
}
}
nav ul li:hover a {
nav ul li:hover a {
color: #fff;
color: #fff;
 +
width:100%;
}
}
Line 59: Line 61:
border-bottom: 1px solid #575f6a;
border-bottom: 1px solid #575f6a;
position: relative;
position: relative;
 +
width: 12.5%;
}
}
nav ul ul li a {
nav ul ul li a {

Revision as of 14:46, 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; width:100%;

} nav ul li:hover a { color: #fff; width:100%; }

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; width: 12.5%; } 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 */