Initial commit

This commit is contained in:
Magnus Åhall 2025-11-10 08:18:54 +01:00
commit b7cd308016
7 changed files with 400 additions and 0 deletions

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

@ -0,0 +1,40 @@
body {
font-family: sans-serif;
margin: 32px;
}
input {
font-size: 1em;
}
.new {
width: 400px;
}
.sites {
display: grid;
grid-template-columns: repeat(3, min-content);
grid-gap: 8px 16px;
margin-top: 32px;
div {
white-space: nowrap;
&.dead {
color: #aaa;
}
}
.header {
font-weight: bold;
}
.line {
grid-column: 1 / -1;
border-bottom: 1px solid #ccc;
}
.stop {
cursor: pointer;
}
}