some design improvments

This commit is contained in:
2023-10-24 01:28:16 +02:00
parent 02e8cf1cd3
commit 110ba61112
8 changed files with 115 additions and 6 deletions

28
frontend/css/_general.css Normal file
View File

@ -0,0 +1,28 @@
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
font-family: OpenSans;
padding: 0 0.5rem;
}
.flex {
display: flex;
}
.f-row {
display: flex;
flex-direction: row;
}
.f-col {
display: flex;
flex-direction: column;
}
footer {
display: none;
}

View File

View File

@ -0,0 +1,3 @@
.main-wrapper h1 {
text-align: center;
}

8
frontend/css/nav.css Normal file
View File

@ -0,0 +1,8 @@
.nav-wrapper {
justify-content: space-between;
padding: 1rem 0.5rem;
}
a {
color: black;
}