52 lines
708 B
CSS
52 lines
708 B
CSS
|
#wrapper {
|
||
|
margin-top: 50px;
|
||
|
}
|
||
|
|
||
|
nav {
|
||
|
background-color: #333;
|
||
|
text-align: center;
|
||
|
position: fixed;
|
||
|
left: 0;
|
||
|
top: 0;
|
||
|
width: 100%;
|
||
|
z-index: 10000;
|
||
|
}
|
||
|
|
||
|
nav ul {
|
||
|
margin: 5px 0px 5px 0px;
|
||
|
}
|
||
|
|
||
|
nav li {
|
||
|
display: inline-block;
|
||
|
font-size: larger;
|
||
|
}
|
||
|
|
||
|
nav a {
|
||
|
position: relative;
|
||
|
display: inline-block;
|
||
|
color: #fff;
|
||
|
text-decoration: none;
|
||
|
border-radius: 8px;
|
||
|
padding: 5px;
|
||
|
transition: background-color .2s ease-in-out;
|
||
|
}
|
||
|
|
||
|
|
||
|
nav ul li:before {
|
||
|
content: '•';
|
||
|
color: #aaa;
|
||
|
margin: 0px 5px 0px 5px;
|
||
|
display: inline-block;
|
||
|
}
|
||
|
|
||
|
nav ul li:first-child:before {
|
||
|
content : '';
|
||
|
}
|
||
|
|
||
|
nav a:hover {
|
||
|
background: #222;
|
||
|
}
|
||
|
|
||
|
nav a:active {
|
||
|
background: #444;
|
||
|
}
|