initial commit

This commit is contained in:
bsod 2022-11-19 22:41:21 +01:00
commit 2bcd14006c
17 changed files with 473 additions and 0 deletions
app/static

47
app/static/main.css Normal file
View file

@ -0,0 +1,47 @@
html {
font-family: sans-serif;
background: #888;
}
header {
color: #eee;
background: #333;
padding: 20px;
}
main {
padding: 20px;
}
main article {
background: #ccc;
padding: 4px;
}
table.checks {
border-collapse: collapse;
}
table.checks th {
border: 1px solid #222;
}
table.checks td {
border: 1px dotted #222;
}
body {
margin-left: auto;
margin-right: auto;
margin-top: 0px;
background: #eee;
color: #222;
}
td.status_CRITICAL {
background: #ee2222;
}
td.status_OK {
background: #22ee22;
}