Update
This commit is contained in:
parent
94fb270008
commit
584c07ff23
22 changed files with 539 additions and 187 deletions
65
backend/scss/styles.scss
Normal file
65
backend/scss/styles.scss
Normal 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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue