Website and web server.

This commit is contained in:
Marvin Blum
2020-05-19 00:00:20 +02:00
committed by Marvin Blum
parent 96c7e85718
commit 5d170489d8
13 changed files with 1461 additions and 0 deletions

56
static/style.css Normal file
View File

@@ -0,0 +1,56 @@
html, body {
margin: 0;
padding: 0;
}
body {
max-width: 700px;
padding: 100px 20px 400px 20px;
margin: 0 auto;
}
.title {
display: flex;
align-items: center;
margin-bottom: 10px;
}
.title div {
flex-grow: 1;
}
.title h1 {
font-size: 48px;
margin-bottom: 10px;
line-height: 1;
}
.title h2 {
font-weight: normal;
margin-top: 0;
line-height: 1;
}
.title img {
max-width: 100px;
max-height: 100px;
border-radius: 100%;
display: block;
margin: 0 40px 0 0;
}
.menu {
display: flex;
}
.menu button {
margin-right: 10px;
}
section {
margin: 80px 0;
}
p {
line-height: 1.5;
}