Add boilerplate

This commit is contained in:
Crow Crowcrow 2017-10-09 01:33:20 +02:00
parent a5fdd8a103
commit f9ed3ac363
6 changed files with 145 additions and 0 deletions

27
static/css/main.css Normal file
View file

@ -0,0 +1,27 @@
html,
body {
height: 100%;
}
body {
display: grid;
background: #212121;
grid-template-rows: 1fr auto 1fr;
}
body > h1 {
font-family: sans-serif;
font-size: 4em;
width: 100%;
padding: 40px;
text-align: center;
color: #4AE1FF;
background: rgba(255,255,255,.01);
grid-row-start: 2;
}