116 lines
1.7 KiB
CSS
116 lines
1.7 KiB
CSS
|
html {
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
*,
|
||
|
*:before,
|
||
|
*:after {
|
||
|
box-sizing: inherit;
|
||
|
}
|
||
|
*:focus {
|
||
|
outline: none;
|
||
|
}
|
||
|
[onClick] {
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
html,
|
||
|
body {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
body {
|
||
|
background: #282828;
|
||
|
font-family: "Roboto", sans-serif;
|
||
|
font-weight: 300;
|
||
|
color: #d5c4a1;
|
||
|
font-size: 11pt;
|
||
|
}
|
||
|
h1,
|
||
|
h2 {
|
||
|
margin-top: 0px;
|
||
|
margin-bottom: 4px;
|
||
|
}
|
||
|
h1 {
|
||
|
font-size: 1.5em;
|
||
|
color: #fb4934;
|
||
|
}
|
||
|
h2 {
|
||
|
font-size: 1.25em;
|
||
|
}
|
||
|
a {
|
||
|
color: #3f9da1;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
a:hover {
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
b {
|
||
|
font-weight: 500;
|
||
|
}
|
||
|
.roboto-light {
|
||
|
font-family: "Roboto", sans-serif;
|
||
|
font-weight: 300;
|
||
|
font-style: normal;
|
||
|
}
|
||
|
.roboto-medium {
|
||
|
font-family: "Roboto", sans-serif;
|
||
|
font-weight: 500;
|
||
|
font-style: normal;
|
||
|
}
|
||
|
input[type="text"],
|
||
|
textarea,
|
||
|
select {
|
||
|
font-family: "Roboto Mono", monospace;
|
||
|
background: #202020;
|
||
|
color: #d5c4a1;
|
||
|
padding: 4px 8px;
|
||
|
border: none;
|
||
|
font-size: 1em;
|
||
|
}
|
||
|
button {
|
||
|
background: #202020;
|
||
|
color: #d5c4a1;
|
||
|
padding: 8px 32px;
|
||
|
border: 1px solid #3a3a3a;
|
||
|
font-size: 1em;
|
||
|
height: 3em;
|
||
|
}
|
||
|
button:focus {
|
||
|
background: #333;
|
||
|
}
|
||
|
#datapoints {
|
||
|
display: grid;
|
||
|
grid-template-columns: repeat(4, min-content);
|
||
|
grid-gap: 8px 16px;
|
||
|
margin-top: 16px;
|
||
|
}
|
||
|
#datapoints .header {
|
||
|
font-weight: 500;
|
||
|
}
|
||
|
#datapoints div {
|
||
|
white-space: nowrap;
|
||
|
}
|
||
|
.widgets {
|
||
|
display: grid;
|
||
|
grid-template-columns: min-content 1fr;
|
||
|
gap: 8px 16px;
|
||
|
}
|
||
|
.widgets .label {
|
||
|
margin-top: 4px;
|
||
|
}
|
||
|
.widgets input[type="text"],
|
||
|
.widgets textarea {
|
||
|
width: 100%;
|
||
|
}
|
||
|
.widgets .datapoints {
|
||
|
font: "Roboto Mono", monospace;
|
||
|
display: grid;
|
||
|
grid-template-columns: min-content 1fr;
|
||
|
gap: 6px 8px;
|
||
|
margin-bottom: 8px;
|
||
|
}
|
||
|
.widgets .action {
|
||
|
display: grid;
|
||
|
grid-template-columns: min-content min-content;
|
||
|
grid-gap: 8px;
|
||
|
}
|