51 lines
506 B
CSS
51 lines
506 B
CSS
body {
|
|
font-family: sans-serif;
|
|
margin: 32px;
|
|
}
|
|
|
|
#version {
|
|
position: absolute;
|
|
right: 16px;
|
|
top: 16px;
|
|
}
|
|
|
|
input {
|
|
font-size: 1em;
|
|
}
|
|
|
|
.browser {
|
|
input {
|
|
width: 350px;
|
|
}
|
|
}
|
|
|
|
.new {
|
|
width: 350px;
|
|
}
|
|
|
|
.sites {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, min-content);
|
|
grid-gap: 8px 16px;
|
|
|
|
div {
|
|
white-space: nowrap;
|
|
|
|
&.dead {
|
|
color: #aaa;
|
|
}
|
|
}
|
|
|
|
.header {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.line {
|
|
grid-column: 1 / -1;
|
|
border-bottom: 1px solid #ccc;
|
|
}
|
|
|
|
.stop {
|
|
cursor: pointer;
|
|
}
|
|
}
|