Added a navbar

This commit is contained in:
2021-11-07 17:35:20 +00:00
parent f83ef2ccf6
commit 993bb64016
4 changed files with 44 additions and 0 deletions

View File

@@ -1,5 +1,6 @@
body {
min-height: 100vh;
margin: 0;
}
p {

25
css/navbar.css Normal file
View File

@@ -0,0 +1,25 @@
.navbar {
align-items: center;
background-color: blue;
color: white;
display: flex;
height: 3rem;
justify-content: space-between;
padding: 0 5px 0 5px;
}
.navbar .links {
padding-left: 1rem;
padding-right: 1rem;
}
.navbar .links a {
color: white;
margin: 0 1rem;
text-align: center;
text-decoration: none;
}
.navbar .links a:hover {
background-color: red;
}