16 lines
271 B
CSS
16 lines
271 B
CSS
.menubar {
|
|
background-color: darkslategrey;
|
|
color: azure;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
@media screen and (min-width: 800px) {
|
|
.menubar {
|
|
position: -webkit-sticky;
|
|
position: sticky;
|
|
top: 0px;
|
|
}
|
|
} |