This commit is contained in:
Carl Pearson
2024-10-14 05:58:03 -06:00
parent 30a2407e46
commit 54536bfa3c
8 changed files with 75 additions and 15 deletions

View File

@@ -1,7 +1,7 @@
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
padding: 0;
box-sizing: border-box;
}

35
static/style/header.css Normal file
View File

@@ -0,0 +1,35 @@
header {
background-color: #333;
color: white;
padding: 1rem;
width: 100dvw;
box-sizing: border-box;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 1.5rem;
font-weight: bold;
}
.nav-links {
list-style: none;
display: flex;
gap: 1rem;
margin: 0;
padding: 0;
}
.nav-links a {
color: white;
text-decoration: none;
}
.nav-links a:hover {
text-decoration: underline;
}