23 lines
246 B
CSS
23 lines
246 B
CSS
|
.header {
|
||
|
position: fixed;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
width: 100%;
|
||
|
list-style-type: none;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
background-color: #dddddd;
|
||
|
}
|
||
|
|
||
|
.header li {
|
||
|
display: inline;
|
||
|
}
|
||
|
|
||
|
.header a {
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
#headerHidden {
|
||
|
width: auto;
|
||
|
}
|