@import url(fonts.css);
html {
background-color: var(--c-bg);
scrollbar-color: var(--c-border) transparent
}
body > .nojs {
width: calc(100vw - 16px);
height: calc(100vh - 16px);
box-sizing: border-box;
border: 8px double var(--c-border);
overflow: hidden
}
.title, .credit {
height: 24px;
background-color: var(--c-bg);
color: var(--c-title);
position: absolute;
padding: 0 4px;
font-family: mono;
font-weight: bold;
}
.title {
top: 0;
left: 32px;
}
.credit {
bottom: 0;
right: 64px;
color: var(--c-fg)
}
main {
overflow: auto;
width: 100%;
height: 100%;
padding-left: 16px
}
t {
font-family: "mono";
font-weight: bold;
color: var(--c-title)
}
.header {
font-family: "nya";
color: var(--c-fg);
white-space: pre
}
p {
font-family: "nya";
color: var(--c-fg);
margin-top: 0;
margin-bottom: 0
}
a {
font-family: "mono";
color: var(--c-highlight);
text-decoration: none;
}
a:hover {
color: var(--c-bg);
background-color: var(--c-highlight);
}
ul {
margin-top: 0;
margin-left: -16px;
}
li {
list-style: none;
}