Initial commit
This commit is contained in:
commit
b7cd308016
7 changed files with 400 additions and 0 deletions
40
static/css/main.css
Normal file
40
static/css/main.css
Normal 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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue