Initial commit

This commit is contained in:
Jonas_Jones 2023-09-15 20:24:31 +02:00 committed by GitHub
commit 09c002f1ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
25 changed files with 2255 additions and 0 deletions

34
src/lib/styles/style.css Normal file
View file

@ -0,0 +1,34 @@
/* style.css */
body {
margin: 0;
background: #eee;
color: #333;
font-family: sans-serif;
}
main {
padding: 1rem;
margin: 2rem auto;
max-width: 40rem;
}
.column {
float: left;
padding: 10px;
height: auto;
display: table-cell;
}
.navbar {
border-right: black solid 1px;
}
.container {
display: table;
}
.row:after {
content: "";
display: table;
clear: both;
}