fix gitignore

This commit is contained in:
Tomáš Mládek 2020-06-14 12:17:26 +02:00
parent 69633a52e7
commit 187cb45b10
2 changed files with 71 additions and 2 deletions

4
.gitignore vendored
View file

@ -1,3 +1,3 @@
db.sqlite3
static
media
/static
/media

View file

@ -0,0 +1,69 @@
body {
background: black;
color: white;
font-family: monospace;
font-size: 13pt;
display: flex;
flex-direction: column;
align-items: center;
}
a {
color: white;
text-decoration: none;
}
h1, h2 {
text-align: center;
margin: 1rem 0;
}
header {
margin: 1rem 0;
}
main {
width: 100vw;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.service {
margin: 1rem;
display: flex;
flex-direction: column;
}
.service-content {
flex-grow: 1;
border: 1px solid white;
padding: 2rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.service .label h3 {
margin: 1rem 0;
text-align: center;
}
.service .label .description {
margin: 0;
align-self: flex-start;
}
.service-status {
border: 1px solid white;
border-top: 0;
text-transform: uppercase;
text-align: right;
padding: .2em;
}