Initial file structure

This commit is contained in:
2021-05-20 19:58:24 +02:00
parent f11e3d1c68
commit 4a4bdfad16
7 changed files with 96 additions and 0 deletions

20
static/css/components.css Normal file
View File

@@ -0,0 +1,20 @@
body {
padding: 0;
margin: 0;
}
.material-icon {
font-family: Material Icons,sans-serif !important;
font-weight: 400;
font-style: normal;
font-size: 24px;
line-height: 1;
letter-spacing: normal;
text-transform: none;
display: inline-block;
white-space: nowrap;
word-wrap: normal;
direction: ltr;
-webkit-font-feature-settings: "liga";
-webkit-font-smoothing: antialiased;
}

35
static/css/header.css Normal file
View File

@@ -0,0 +1,35 @@
.app-header {
box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
overflow: hidden;
-webkit-user-select: none;
background-color: #7d7d7d;
color: #ffffff;
display: grid;
grid-gap: 5%;
grid-template-columns: 25% 40% 25%;
height: auto;
max-height: 100px;
padding-top: 10px;
padding-bottom: 10px;
}
.logo {
grid-column: 1;
}
.title {
grid-column: 2;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
font-size: 2em;
}
.help {
grid-column: 3;
display: flex;
justify-content: right;
align-items: center;
margin-right: 10px;
}

0
static/css/index.css Normal file
View File