2020-05-11 02:43:06 +00:00
|
|
|
html {
|
|
|
|
color: #bdc7b8;
|
2020-05-11 01:23:00 +00:00
|
|
|
font: calc(0.40rem + 1vmin) monospace;
|
|
|
|
overflow-y: scroll;
|
|
|
|
background-color: #241e1e;
|
2020-05-11 02:43:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
margin-right: auto;
|
|
|
|
margin-left: auto;
|
|
|
|
min-width: 33rem;
|
|
|
|
max-width: 53rem;
|
2020-05-11 01:23:00 +00:00
|
|
|
}
|
|
|
|
|
2020-05-11 02:43:06 +00:00
|
|
|
@media only screen and (max-width: 53rem) {
|
|
|
|
body {
|
|
|
|
margin: 0 2rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-11 01:23:00 +00:00
|
|
|
a {
|
|
|
|
color:#6CF;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover, a:active, a:visited {
|
|
|
|
color: #b5bd68;
|
|
|
|
}
|
|
|
|
|
2020-05-11 06:47:14 +00:00
|
|
|
.nav-row {
|
2020-05-11 01:23:00 +00:00
|
|
|
display: flex;
|
2020-05-11 02:43:06 +00:00
|
|
|
justify-content: space-between;
|
|
|
|
}
|
2020-05-11 20:13:20 +00:00
|
|
|
.nav-row a {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2020-05-11 06:47:14 +00:00
|
|
|
.nav-row:last-child {
|
2020-05-11 03:55:16 +00:00
|
|
|
justify-content: center;
|
|
|
|
}
|
2020-05-11 20:13:20 +00:00
|
|
|
.nav-row:last-child a {
|
2020-05-11 03:55:16 +00:00
|
|
|
margin: 0 1em;
|
|
|
|
}
|
2020-05-11 02:43:06 +00:00
|
|
|
|
|
|
|
.flash {
|
|
|
|
color: rgb(173, 74, 8);
|
|
|
|
font-weight: bold;
|
|
|
|
text-align: center;
|
|
|
|
border: 1px dashed rgb(173, 74, 8);
|
2020-05-11 03:55:16 +00:00
|
|
|
border-radius: 0.5em;
|
2020-05-11 02:43:06 +00:00
|
|
|
margin-bottom: 2em;
|
|
|
|
padding: 1em;
|
2020-05-11 01:23:00 +00:00
|
|
|
}
|
2020-05-11 02:43:06 +00:00
|
|
|
|
|
|
|
main {
|
|
|
|
border: 1px dashed #bdc7b8;
|
|
|
|
padding: 1rem;
|
2020-05-11 03:55:16 +00:00
|
|
|
margin-bottom: 2em;
|
2020-05-11 02:43:06 +00:00
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
2020-05-11 01:23:00 +00:00
|
|
|
}
|
|
|
|
|
2020-05-11 06:47:14 +00:00
|
|
|
.full-margin {
|
|
|
|
margin: 3rem 0;
|
|
|
|
}
|
|
|
|
.half-margin {
|
|
|
|
margin: 1.5rem 0;
|
|
|
|
}
|
|
|
|
.third-margin {
|
|
|
|
margin: 1rem 0;
|
2020-05-10 04:45:20 +00:00
|
|
|
}
|
|
|
|
|
2020-05-11 06:47:14 +00:00
|
|
|
.row {
|
2020-05-11 02:43:06 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-around;
|
2020-05-11 06:47:14 +00:00
|
|
|
width: 100%;
|
|
|
|
}
|
2020-05-11 20:13:20 +00:00
|
|
|
.wrap {
|
2020-05-11 06:47:14 +00:00
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
2020-05-11 20:13:20 +00:00
|
|
|
.justify-start {
|
2020-05-11 06:47:14 +00:00
|
|
|
justify-content: flex-start;
|
|
|
|
}
|
2020-05-11 20:13:20 +00:00
|
|
|
.justify-end {
|
2020-05-11 06:47:14 +00:00
|
|
|
justify-content: flex-end;
|
2020-05-11 02:43:06 +00:00
|
|
|
}
|
|
|
|
|
2020-05-11 06:47:14 +00:00
|
|
|
form {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: flex-start;
|
|
|
|
}
|
|
|
|
|
|
|
|
label.align {
|
|
|
|
min-width: 10em;
|
|
|
|
}
|
|
|
|
|
2020-05-11 16:57:39 +00:00
|
|
|
input, textarea, select, label {
|
2020-05-11 02:43:06 +00:00
|
|
|
margin: 0.5em;
|
|
|
|
}
|
|
|
|
|
2020-05-11 16:57:39 +00:00
|
|
|
input, select, textarea {
|
2020-05-11 02:43:06 +00:00
|
|
|
outline: 0;
|
|
|
|
padding: 0.25em 0.5em;
|
|
|
|
color: #bdc7b8;
|
2020-05-12 01:34:12 +00:00
|
|
|
background-color: #bdc7b805;
|
2020-05-11 02:43:06 +00:00
|
|
|
}
|
|
|
|
|
2020-05-11 06:47:14 +00:00
|
|
|
select {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
-moz-appearance: none;
|
|
|
|
appearance: none;
|
|
|
|
/*
|
|
|
|
re-generate the following line from the source image with:
|
|
|
|
echo "background-image: url(data:image/png;base64,$(cat capsulflask/static/dropdown-handle.png | base64 -w 0));"
|
|
|
|
*/
|
|
|
|
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAACXBIWXMAAA9hAAAPYQGoP6dpAAACfElEQVRYw+2WSWgVQRCGp3tmHmLEuKEEL3owguJBjBcD8eJJiCABT4IrOQiKC6jnoJ6CYBDiQkTxiQiC4nKIntR4E70JUQQ9KahIUAg6m1/FntBvXpYZE6PCFPxUTc90/dW19HuOU0op/4K8GnzcOMN8s8BCsbVZO8hCO1AzQN6EugJa7QCWguvgMB/4f5B8DeqO73vb0JEdwBetVYPnud3Yl0yU003egep3XbclCEInG8C3OE6cMIwc3/e383yXDWuniViDI5J2rXVTFEXpq9gO4Gu6GgSB43neOsyHbNwFpkK+AHWeU3dD3hDHsf06sQO4DZ6lUYVh6CilpEvPgTNpxxYgVmA15i3KuldObZGL8QQ8Hw2geWXbW9RWMECkv8JLEgmiQvQHeLyGw+YCMWwC98hkm5Q1Fdcd8d0POuD8LA8qE/kic+otYHQafM9zgjB8jXkIPGBzMN58o/aAExxkXiblP8ANsJ/9Q+mitr/gxSeUNOHVNBMjfUFJOM0KzJviACJvDPI5QgzOZsnJpKiLYLdNXpcBy1kF1WVOXKnZgDPKU8U8Ct6b5WWgh3q32yk38h2cAichr3upJmmmYyaQmiC4SJiW8AVmJ5Bs9DG+q2SCMjIMjkPcMx6HytHRUtPTYK69TnM6dPcHKSPNtTiK6kZsyNS7OpF/lXOsZEL6qO18u7Zpn2TXeJZe2gn5/cl8qwKzvRF12dR7InkDdkD+NI9fnTcAHD4yd8Wg9EBWzNpL+SYveaEMWJlYjqoyDBuSpGYyBmSEIX9XxJ/6zTt+CeoC2GwaTmrdCfnHor7UFH5oZqN6zd2+D/Lhv/FXbj1oKf/UllLKfy0/ATtM/c/kKrmhAAAAAElFTkSuQmCC);
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: bottom 0.65em right 0.8em;
|
|
|
|
background-size: 0.5em;
|
2020-05-11 20:13:20 +00:00
|
|
|
padding-right: 2em;
|
2020-05-11 06:47:14 +00:00
|
|
|
}
|
|
|
|
|
2020-05-12 17:38:36 +00:00
|
|
|
input[type=text], input[type=number], textarea {
|
2020-05-11 02:43:06 +00:00
|
|
|
font: calc(0.40rem + 1vmin) monospace;
|
2020-05-12 01:34:12 +00:00
|
|
|
border: 1px solid #777e73;
|
2020-05-11 02:43:06 +00:00
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
|
2020-05-11 16:57:39 +00:00
|
|
|
input[type=text], textarea {
|
|
|
|
min-width: 20em;
|
|
|
|
}
|
|
|
|
input[type=text].expand, textarea.expand {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
textarea {
|
|
|
|
height: 6em;
|
|
|
|
}
|
|
|
|
|
2020-05-11 20:13:20 +00:00
|
|
|
input[type=checkbox] {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2020-05-12 01:34:12 +00:00
|
|
|
input[type=submit], select {
|
2020-05-11 02:43:06 +00:00
|
|
|
font: calc(0.40rem + 1vmin) monospace;
|
|
|
|
border: 1px solid #777e73;
|
2020-05-12 01:34:12 +00:00
|
|
|
border-radius: 0.5em;
|
2020-05-11 02:43:06 +00:00
|
|
|
}
|
|
|
|
|
2020-05-11 16:57:39 +00:00
|
|
|
input[type=submit], select {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2020-05-12 17:38:36 +00:00
|
|
|
input::-webkit-outer-spin-button,
|
|
|
|
input::-webkit-inner-spin-button {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Firefox */
|
|
|
|
input[type=number] {
|
|
|
|
-moz-appearance: textfield;
|
|
|
|
}
|
|
|
|
|
2020-05-11 02:43:06 +00:00
|
|
|
h1, h2, h3, h4, h5 {
|
|
|
|
font-size:calc(0.40rem + 1vmin);
|
|
|
|
margin: initial;
|
|
|
|
padding: initial;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul li {
|
2020-05-11 03:55:16 +00:00
|
|
|
margin: 0.5em 0;
|
|
|
|
}
|
|
|
|
|
2020-05-11 20:13:20 +00:00
|
|
|
table{
|
|
|
|
border-collapse: collapse;
|
|
|
|
}
|
|
|
|
thead {
|
|
|
|
background: #bdc7b812;
|
|
|
|
}
|
|
|
|
td, th {
|
2020-05-12 05:45:37 +00:00
|
|
|
font: calc(0.40rem + 1vmin) monospace;
|
|
|
|
padding: 0.1em 1em;
|
|
|
|
}
|
|
|
|
table.small td, table.small th {
|
|
|
|
font: calc(0.35rem + 0.83vmin) monospace;
|
|
|
|
padding: 0.1em 1em;
|
2020-05-11 20:13:20 +00:00
|
|
|
}
|
|
|
|
th {
|
|
|
|
border-right: 4px solid #241e1e;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
td {
|
|
|
|
border-bottom: 2px dotted #777e7355;
|
|
|
|
}
|
|
|
|
|
|
|
|
.waiting-pulse {
|
|
|
|
animation: waiting-pulse 1s ease-in-out 0s infinite forwards alternate;
|
|
|
|
}
|
|
|
|
@keyframes waiting-pulse {
|
|
|
|
from { color: rgba(221, 169, 56, 0.8); }
|
|
|
|
to { color: rgba(221, 169, 56, 0.2); }
|
|
|
|
}
|
|
|
|
|
2020-05-11 03:55:16 +00:00
|
|
|
.code {
|
|
|
|
display: inline-block;
|
2020-05-12 17:38:36 +00:00
|
|
|
padding: 0.5em 1.2em;
|
2020-05-11 03:55:16 +00:00
|
|
|
border-radius: 0.5em;
|
|
|
|
border: 1px solid #777e73;
|
|
|
|
background: #bdc7b810;
|
2020-05-11 01:23:00 +00:00
|
|
|
}
|
2020-05-11 16:57:39 +00:00
|
|
|
.break-word {
|
|
|
|
word-break: break-word;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dim {
|
|
|
|
color: #777e73bb;
|
|
|
|
}
|
2020-05-11 02:43:06 +00:00
|
|
|
|
|
|
|
footer, p {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer {
|
|
|
|
margin: 2rem 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bigtext {
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
top: 0.17rem;
|
|
|
|
font-size: 1.8em;
|
|
|
|
}
|
|
|
|
|
2020-05-11 16:57:39 +00:00
|
|
|
.smalltext {
|
|
|
|
font-size: 0.8em;
|
|
|
|
}
|
|
|
|
|