103 lines
1.2 KiB
CSS
103 lines
1.2 KiB
CSS
:root
|
|
{
|
|
--hue: 0;
|
|
}
|
|
|
|
html
|
|
{
|
|
background-color: hsl(var(--hue), 0%, 0%);
|
|
color: hsl(var(--hue), 0%, 100%);
|
|
|
|
font-family: sans-serif;
|
|
font-size: 1.5em;
|
|
}
|
|
|
|
body
|
|
{
|
|
max-width: 960px;
|
|
margin: auto;
|
|
padding: 16px;
|
|
|
|
background-color: hsl(var(--hue), 0%, 12.5%);
|
|
color: hsl(var(--hue), 0%, 87.5%);
|
|
}
|
|
|
|
a
|
|
{
|
|
background-color: hsl(var(--hue), 0%, 12.5%);
|
|
color: hsl(var(--hue), 50%, 50%);
|
|
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover
|
|
{
|
|
background-color: hsl(var(--hue), 0%, 12.5%);
|
|
color: hsl(var(--hue), 50%, 75%);
|
|
}
|
|
|
|
label
|
|
{
|
|
display: block;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
label > span
|
|
{
|
|
display: block;
|
|
font-weight: bold;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
input
|
|
{
|
|
min-width: 480px;
|
|
padding: 4px;
|
|
|
|
background-color: hsl(var(--hue), 0%, 25%);
|
|
color: hsl(var(--hue), 0%, 100%);
|
|
|
|
font-size: 1.0em;
|
|
|
|
border: none;
|
|
}
|
|
|
|
textarea
|
|
{
|
|
min-width: 480px;
|
|
min-height: 120px;
|
|
padding: 4px;
|
|
|
|
background-color: hsl(var(--hue), 0%, 25%);
|
|
color: hsl(var(--hue), 0%, 100%);
|
|
|
|
font-size: 1.0em;
|
|
|
|
border: none;
|
|
}
|
|
|
|
button
|
|
{
|
|
text-transform: capitalize;
|
|
font-size: 1.0em;
|
|
}
|
|
|
|
.docs-list-entry
|
|
{
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.docs-list-entry > *
|
|
{
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.state-waiting
|
|
{
|
|
cursor: progress;
|
|
}
|
|
|
|
.download::before
|
|
{
|
|
content: "\21A7 ";
|
|
}
|