This commit is contained in:
Dominic Grimm 2023-02-08 22:13:11 +01:00
parent 94fb270008
commit 584c07ff23
No known key found for this signature in database
GPG key ID: 6F294212DEAAC530
22 changed files with 539 additions and 187 deletions

65
backend/scss/styles.scss Normal file
View file

@ -0,0 +1,65 @@
html,
body {
width: 100vw;
min-height: 100vh;
}
* {
margin: 0;
padding: 0;
font-family: "JetBrains Mono", monospace;
}
#wrapper {
width: 75%;
margin: 0 auto;
}
#navbar {
display: flex;
margin-bottom: 1%;
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
}
li {
float: left;
}
a {
display: block;
text-align: center;
padding: 1em;
text-decoration: none;
}
}
#navbar-brand {
width: 50%;
a {
float: left;
text-decoration: underline;
}
}
#navbar-links {
width: 50%;
ul {
float: right;
}
}
#content {
padding: 3%;
}
.double-border {
border: 5px double black;
}