Initial commit

This commit is contained in:
Magnus Åhall 2023-06-15 07:24:23 +02:00
commit 79288b0483
78 changed files with 1810 additions and 0 deletions

20
static/css/login.css Normal file
View file

@ -0,0 +1,20 @@
#login {
display: grid;
justify-items: center;
height: 100%;
}
#login div {
max-width: 300px;
}
#login div input {
margin-bottom: 32px;
width: 100%;
border: 0px;
border-bottom: 1px solid #fff;
font-size: 18pt;
color: #fff;
background-color: #494949;
}
#login div input:focus {
outline: none;
}

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

@ -0,0 +1,15 @@
html,
body {
margin: 0px;
padding: 0px;
font-family: 'Liberation Mono', monospace;
font-size: 16pt;
background-color: #494949;
}
h1 {
color: #ecbf00;
}
#app {
padding: 32px;
color: #fff;
}

0
static/css/theme.css Normal file
View file