Init repository

This commit is contained in:
2023-06-13 12:30:20 +02:00
commit 0e2fcf3195
8 changed files with 287 additions and 0 deletions

43
assets/style.css Normal file
View File

@@ -0,0 +1,43 @@
* {
padding: 0;
margin: 0;
}
body {
font-family: Arial, Helvetica, sans-serif;
}
.container {
max-width: 800px;
padding: 20px;
margin: auto;
}
header {
margin-top: 40px;
margin-bottom: 80px;
text-align: center;
}
section {
margin-top: 40px;
margin-bottom: 40px;
}
section h2 {
text-align: center;
}
section h3 .date {
font-size: medium;
color: dimgray;
}
section .description {
padding: 10px;
list-style-position: inside;
}
footer {
text-align: center;
}