edited readme

This commit is contained in:
asus
2023-12-06 14:19:27 +01:00
parent 385b43cfc6
commit cac49da466
9 changed files with 113 additions and 24 deletions

29
styles/elements/nav.css Normal file
View File

@@ -0,0 +1,29 @@
nav {
display: flex;
flex-direction: row;
justify-content: center;
position: -webkit-sticky;
position: sticky;
top: 0;
background-color: #f6f6f6;
z-index: 1;
}
nav a {
position: relative;
padding: 10px 20px;
height: fit-content;
text-decoration: none;
color: inherit;
}
nav a:before {
content: "•";
position: absolute;
left: 0px;
}
nav a:after {
content: "•";
position: absolute;
right: 0px;
}