2019-09-04 17:19:52 +00:00
|
|
|
$bg-page: #305;
|
|
|
|
$bg-dark: #002;
|
|
|
|
$fg: #dde;
|
|
|
|
$fg-subtle: #aab;
|
|
|
|
$fg-limited: #a79;
|
|
|
|
|
2019-04-09 11:59:33 +00:00
|
|
|
body {
|
2019-09-04 17:19:52 +00:00
|
|
|
background: $bg-page;
|
|
|
|
color: $fg;
|
2019-04-09 11:59:33 +00:00
|
|
|
font-size: 1em;
|
|
|
|
word-wrap: break-word;
|
2019-06-10 20:50:00 +00:00
|
|
|
font-family: sans-serif, "Noto Color Emoji";
|
2019-09-28 20:23:36 +00:00
|
|
|
line-height: 1.2;
|
2019-04-09 11:59:33 +00:00
|
|
|
}
|
2019-05-10 15:24:26 +00:00
|
|
|
pre, code {
|
2019-05-10 13:22:25 +00:00
|
|
|
white-space: pre-wrap;
|
|
|
|
}
|
2019-05-14 15:11:11 +00:00
|
|
|
blockquote {
|
|
|
|
margin-left: 0em;
|
|
|
|
padding-left: 0.5em;
|
2019-09-04 17:19:52 +00:00
|
|
|
border-left: 1px solid $fg-subtle;
|
2019-05-14 15:11:11 +00:00
|
|
|
}
|
2019-05-14 15:12:21 +00:00
|
|
|
table {
|
|
|
|
display: block;
|
|
|
|
max-width: 100%;
|
|
|
|
overflow-x: auto;
|
|
|
|
}
|
2019-04-09 11:59:33 +00:00
|
|
|
a {
|
2019-09-04 17:19:52 +00:00
|
|
|
color: $fg;
|
2019-04-09 11:59:33 +00:00
|
|
|
}
|
2019-06-10 20:50:00 +00:00
|
|
|
form, input, textarea {
|
|
|
|
font-family: monospace, "Noto Color Emoji";
|
2019-04-09 11:59:33 +00:00
|
|
|
}
|
|
|
|
p {
|
2019-09-28 01:54:04 +00:00
|
|
|
margin-top: 1em;
|
2019-04-09 11:59:33 +00:00
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
input {
|
2019-09-04 17:19:52 +00:00
|
|
|
background: $bg-page;
|
|
|
|
color: $fg;
|
2019-04-09 11:59:33 +00:00
|
|
|
font-size: 1.0em;
|
|
|
|
line-height: 1.2em;
|
2019-10-02 16:47:54 +00:00
|
|
|
padding: 0.4em;
|
|
|
|
}
|
|
|
|
#honkform input {
|
|
|
|
font-size: 0.8em;
|
2019-04-09 11:59:33 +00:00
|
|
|
}
|
2019-04-28 23:16:24 +00:00
|
|
|
body > header {
|
2019-04-09 11:59:33 +00:00
|
|
|
margin: 1em auto;
|
|
|
|
font-size: 1.5em;
|
2019-09-22 19:22:21 +00:00
|
|
|
}
|
2019-04-28 23:16:24 +00:00
|
|
|
body > header span {
|
2019-09-22 19:22:21 +00:00
|
|
|
margin-left: 2em;
|
2019-04-09 11:59:33 +00:00
|
|
|
}
|
2019-09-30 18:17:58 +00:00
|
|
|
body > header p {
|
|
|
|
padding: 1em;
|
|
|
|
}
|
2019-09-24 17:52:06 +00:00
|
|
|
header > details {
|
2019-09-22 19:22:21 +00:00
|
|
|
background: $bg-page;
|
2019-09-30 18:17:58 +00:00
|
|
|
padding: 1em 1em 1em 1em;
|
2019-09-22 19:22:21 +00:00
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
2019-09-30 18:17:58 +00:00
|
|
|
left: 0;
|
2019-06-11 02:28:09 +00:00
|
|
|
display: inline;
|
2019-09-30 18:17:58 +00:00
|
|
|
max-height: calc(100% - 1em);
|
2019-09-29 23:09:57 +00:00
|
|
|
overflow: auto;
|
2019-09-30 18:17:58 +00:00
|
|
|
opacity: 0.7;
|
2019-06-11 02:28:09 +00:00
|
|
|
}
|
2019-09-24 17:52:06 +00:00
|
|
|
header > details[open] {
|
2019-09-30 18:17:58 +00:00
|
|
|
padding: 1em 1em 0em 1em;
|
2019-09-22 19:22:21 +00:00
|
|
|
background: $bg-dark;
|
|
|
|
border: 1px solid $fg;
|
2019-09-30 18:17:58 +00:00
|
|
|
margin-bottom: 1em;
|
|
|
|
opacity: 1.0;
|
|
|
|
}
|
2019-09-24 17:52:06 +00:00
|
|
|
header > details li {
|
2019-09-22 23:38:18 +00:00
|
|
|
margin: 1em 0em 1em 0em;
|
2019-06-11 02:28:09 +00:00
|
|
|
}
|
2019-10-03 19:13:16 +00:00
|
|
|
details summary {
|
|
|
|
display: inline;
|
|
|
|
}
|
2019-10-07 04:07:23 +00:00
|
|
|
@supports (-moz-appearance:none) {
|
|
|
|
details summary {
|
|
|
|
display: list-item;
|
|
|
|
}
|
|
|
|
}
|
2019-04-28 23:16:24 +00:00
|
|
|
main {
|
2019-04-09 11:59:33 +00:00
|
|
|
max-width: 1200px;
|
|
|
|
margin: auto;
|
|
|
|
font-size: 1.5em;
|
|
|
|
}
|
|
|
|
.info {
|
2019-09-04 17:19:52 +00:00
|
|
|
background: $bg-dark;
|
|
|
|
border: 1px solid $fg;
|
2019-04-09 11:59:33 +00:00
|
|
|
margin-bottom: 1em;
|
|
|
|
padding: 0em 1em 0em 1em;
|
|
|
|
}
|
|
|
|
.info div {
|
2019-09-28 01:54:04 +00:00
|
|
|
margin-top: 1em;
|
2019-04-09 11:59:33 +00:00
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
2019-09-30 18:17:58 +00:00
|
|
|
label, button, select {
|
2019-06-02 18:44:39 +00:00
|
|
|
font-size: 16px;
|
2019-04-09 11:59:33 +00:00
|
|
|
font-family: monospace;
|
2019-09-04 17:19:52 +00:00
|
|
|
color: $fg;
|
|
|
|
background: $bg-page;
|
|
|
|
border: 1px solid $fg;
|
2019-04-09 11:59:33 +00:00
|
|
|
padding: 0.5em;
|
|
|
|
}
|
|
|
|
button a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2019-07-06 17:48:31 +00:00
|
|
|
form {
|
2019-04-09 11:59:33 +00:00
|
|
|
margin-top: 1em;
|
|
|
|
}
|
2019-07-06 17:48:31 +00:00
|
|
|
textarea {
|
2019-04-09 11:59:33 +00:00
|
|
|
padding: 0.5em;
|
|
|
|
font-size: 1em;
|
2019-09-04 17:19:52 +00:00
|
|
|
background: $bg-page;
|
|
|
|
color: $fg;
|
2019-04-21 01:55:23 +00:00
|
|
|
width: 600px;
|
2019-04-09 11:59:33 +00:00
|
|
|
height: 8em;
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
box-sizing: border-box;
|
2019-06-02 18:51:02 +00:00
|
|
|
max-width: 100%;
|
2019-04-09 11:59:33 +00:00
|
|
|
}
|
2019-07-06 17:48:31 +00:00
|
|
|
input[type="checkbox"] {
|
2019-04-09 11:59:33 +00:00
|
|
|
position: fixed;
|
|
|
|
top: -9999px;
|
|
|
|
}
|
2019-07-06 17:48:31 +00:00
|
|
|
input[type="checkbox"] + span:after {
|
2019-04-09 11:59:33 +00:00
|
|
|
content: "no";
|
|
|
|
}
|
2019-07-06 17:48:31 +00:00
|
|
|
input[type="checkbox"]:checked + span:after {
|
2019-04-09 11:59:33 +00:00
|
|
|
content: "yes";
|
|
|
|
}
|
2019-07-06 17:48:31 +00:00
|
|
|
input[type="checkbox"]:focus + span:after {
|
2019-09-04 17:19:52 +00:00
|
|
|
outline: 1px solid $fg;
|
2019-04-09 11:59:33 +00:00
|
|
|
}
|
2019-07-06 17:48:31 +00:00
|
|
|
input[type=file] {
|
2019-04-09 11:59:33 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.honk {
|
|
|
|
margin: auto;
|
2019-09-04 17:19:52 +00:00
|
|
|
background: $bg-dark;
|
|
|
|
border: 1px solid $fg;
|
2019-04-09 11:59:33 +00:00
|
|
|
border-radius: 1em;
|
|
|
|
margin-bottom: 1em;
|
|
|
|
padding-left: 1em;
|
|
|
|
padding-right: 1em;
|
|
|
|
padding-top: 0;
|
2019-07-11 02:59:55 +00:00
|
|
|
overflow: hidden;
|
2019-04-09 11:59:33 +00:00
|
|
|
}
|
2019-07-06 18:36:07 +00:00
|
|
|
.honk #honkform {
|
2019-07-06 17:48:31 +00:00
|
|
|
padding: 1em;
|
2019-09-04 17:19:52 +00:00
|
|
|
border: 1px solid $fg;
|
2019-07-06 17:48:31 +00:00
|
|
|
}
|
|
|
|
|
2019-04-09 11:59:33 +00:00
|
|
|
.honk a {
|
2019-09-04 17:19:52 +00:00
|
|
|
color: $fg;
|
2019-04-09 11:59:33 +00:00
|
|
|
}
|
2019-04-28 23:16:24 +00:00
|
|
|
.honk header .clip a {
|
2019-09-04 17:19:52 +00:00
|
|
|
color: $fg-subtle;
|
2019-04-09 11:59:33 +00:00
|
|
|
}
|
2019-04-28 23:16:24 +00:00
|
|
|
.honk header {
|
2019-04-09 11:59:33 +00:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
font-size: 0.8em;
|
2019-09-28 20:23:36 +00:00
|
|
|
line-height: 1.1;
|
2019-04-09 11:59:33 +00:00
|
|
|
margin-top: 1em;
|
2019-04-20 02:06:34 +00:00
|
|
|
height: 64px;
|
2019-04-09 11:59:33 +00:00
|
|
|
}
|
2019-04-28 23:16:24 +00:00
|
|
|
.honk header img {
|
2019-04-09 11:59:33 +00:00
|
|
|
float: left;
|
|
|
|
margin-right: 1em;
|
|
|
|
width: 64px;
|
|
|
|
height: 64px;
|
|
|
|
}
|
2019-04-28 23:16:24 +00:00
|
|
|
.honk header p {
|
2019-04-09 11:59:33 +00:00
|
|
|
margin-top: 0px;
|
|
|
|
}
|
2019-09-30 18:17:58 +00:00
|
|
|
.honk .actions button {
|
2019-06-02 19:32:10 +00:00
|
|
|
margin-left: 4em;
|
2019-08-24 00:45:43 +00:00
|
|
|
margin-top: 2em;
|
2019-04-15 20:18:38 +00:00
|
|
|
}
|
2019-09-30 18:50:36 +00:00
|
|
|
.honk .noise {
|
|
|
|
line-height: 1.4;
|
|
|
|
}
|
2019-07-08 00:24:54 +00:00
|
|
|
.subtle {
|
2019-04-15 20:18:38 +00:00
|
|
|
}
|
2019-07-08 00:24:54 +00:00
|
|
|
.subtle .noise {
|
2019-09-04 17:19:52 +00:00
|
|
|
color: $fg-subtle;
|
2019-04-15 20:18:38 +00:00
|
|
|
font-size: 0.8em;
|
|
|
|
}
|
2019-07-08 00:24:54 +00:00
|
|
|
.subtle .noise a {
|
2019-09-04 17:19:52 +00:00
|
|
|
color: $fg-subtle;
|
2019-04-15 20:18:38 +00:00
|
|
|
}
|
2019-04-28 22:41:10 +00:00
|
|
|
.limited {
|
2019-09-04 17:32:22 +00:00
|
|
|
border: 1px solid $fg-limited;
|
|
|
|
color: $fg-limited;
|
2019-05-02 03:37:54 +00:00
|
|
|
}
|
|
|
|
.limited .noise {
|
2019-09-04 17:32:22 +00:00
|
|
|
color: $fg-limited;
|
2019-05-02 03:37:54 +00:00
|
|
|
}
|
|
|
|
.limited .noise a {
|
2019-09-04 17:32:22 +00:00
|
|
|
color: $fg-limited;
|
2019-04-28 22:41:10 +00:00
|
|
|
}
|
2019-07-10 18:36:14 +00:00
|
|
|
details.noise[open] summary {
|
|
|
|
display: none;
|
|
|
|
}
|
2019-04-26 13:07:13 +00:00
|
|
|
.inlineform {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
.inlineform select {
|
|
|
|
}
|
2019-07-10 18:36:14 +00:00
|
|
|
.honk details.actions summary {
|
2019-09-04 17:19:52 +00:00
|
|
|
color: $fg-subtle;
|
2019-06-02 19:08:12 +00:00
|
|
|
}
|
2019-07-10 18:36:14 +00:00
|
|
|
.limited details.actions summary {
|
2019-09-04 17:32:22 +00:00
|
|
|
color: $fg-limited;
|
2019-06-02 19:08:12 +00:00
|
|
|
}
|
2019-06-03 00:16:49 +00:00
|
|
|
h1, h2 {
|
|
|
|
font-size: 1.2em;
|
|
|
|
}
|
|
|
|
h3, h4 {
|
|
|
|
font-size: 1.1em;
|
|
|
|
}
|
2019-06-02 19:08:12 +00:00
|
|
|
|
2019-07-09 00:03:53 +00:00
|
|
|
img:not(.emu) {
|
2019-09-04 17:19:52 +00:00
|
|
|
background: $bg-page;
|
2019-07-09 00:03:53 +00:00
|
|
|
}
|
2019-06-03 17:41:44 +00:00
|
|
|
img, video {
|
2019-09-28 01:54:04 +00:00
|
|
|
max-width: 100%;
|
2019-10-03 20:20:11 +00:00
|
|
|
max-height: 600px;
|
2019-04-09 11:59:33 +00:00
|
|
|
}
|
2019-04-12 19:02:56 +00:00
|
|
|
img.emu {
|
2019-05-08 21:22:27 +00:00
|
|
|
width: 2em;
|
|
|
|
height: 2em;
|
2019-04-12 19:02:56 +00:00
|
|
|
vertical-align: middle;
|
|
|
|
margin: -2px;
|
2019-05-08 21:22:27 +00:00
|
|
|
object-fit: contain;
|
2019-04-12 19:02:56 +00:00
|
|
|
}
|
2019-04-21 01:55:23 +00:00
|
|
|
@media screen and (max-width: 740px) {
|
|
|
|
body {
|
2019-06-02 18:44:39 +00:00
|
|
|
font-size: 12px;
|
2019-04-21 01:55:23 +00:00
|
|
|
}
|
2019-04-30 19:31:19 +00:00
|
|
|
.honk header {
|
2019-06-02 18:54:18 +00:00
|
|
|
height: 52px;
|
2019-04-21 01:55:23 +00:00
|
|
|
}
|
2019-04-30 19:31:19 +00:00
|
|
|
.honk header img {
|
2019-04-21 01:55:23 +00:00
|
|
|
width: 48px;
|
|
|
|
height: 48px;
|
|
|
|
}
|
|
|
|
}
|