redesign #1

Merged
fred.boniface merged 115 commits from redesign into main 2022-10-29 20:12:58 +01:00
2 changed files with 17 additions and 0 deletions
Showing only changes of commit eed9ef9bd2 - Show all commits

View File

@ -7,6 +7,7 @@
<link rel="icon" type="image/png" href="/images/favicon.png">
<link rel="stylesheet" href="./style/fonts.css">
<link rel="stylesheet" href="./style/new_style.css">
<link rel="stylesheet" href="/style/new_menu.css">
<title>Home</title>
</head>
<body>

16
style/new_menu.css Normal file
View File

@ -0,0 +1,16 @@
.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;
}
}