This commit is contained in:
EspenVista
2025-04-03 11:29:46 +01:00
parent 90eaeca54d
commit 59d3c28fed
2 changed files with 44 additions and 1 deletions

View File

@@ -6,3 +6,38 @@
#qrCodeContainer {
margin-top: 20px;
}
body {
margin: 0;
font-family: Arial, sans-serif;
}
.navbar {
display: flex;
align-items: center;
justify-content: center;
background-color: #000;
padding: 10px 20px;
}
.logo {
height: 50px;
position: absolute;
left: 20px;
}
.nav-links {
list-style: none;
padding: 0;
display: flex;
}
.nav-links li {
margin: 0 15px;
}
.nav-links a {
text-decoration: none;
color: white;
font-size: 18px;
}