Initial commit

This commit is contained in:
Vojtěch Káně
2020-12-03 23:07:44 +01:00
commit 28e22e3422
24 changed files with 1526 additions and 0 deletions

30
ui/static/style.css Normal file
View File

@@ -0,0 +1,30 @@
html {
height: 100%;
}
body {
min-height: 100%;
margin: 0;
}
body {
display: grid;
grid-template-rows: 10vh auto;
grid-template-columns: auto;
grid-template-areas:
"header"
"main";
}
header {
grid-area: header;
display: flex;
justify-content: center;
}
main {
grid-area: main;
display: flex;
justify-content: space-around;
flex-direction: column;
}