fredboniface.co.uk/style/new_menu.css
2022-10-18 11:55:11 +01:00

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;
}
}