moth/theme/basic.css

166 lines
2.6 KiB
CSS
Raw Normal View History

/*
* Colors
*
* This uses the alpha channel to apply hue tinting to elements, to get a
* similar effect in light or dark mode.
*
* http://paletton.com/#uid=33x0u0klrl-4ON9dhtKtAdqMQ4T
*/
2018-09-18 18:22:03 -06:00
body {
background: #010e19;
color: #edd488;
2018-09-18 18:22:03 -06:00
}
main {
background: #000d;
2020-02-29 17:12:35 -07:00
}
h1, h2, h3, h4, h5, h6 {
color: #cb2408cc;
2018-09-18 18:22:03 -06:00
}
h1 {
background: #cb240844;
2018-09-18 18:22:03 -06:00
}
a:any-link {
color: #b9cbd8;
}
.notification {
background: #ac8f3944;
2018-09-18 18:22:03 -06:00
}
.error {
background: red;
color: white;
2018-09-18 18:22:03 -06:00
}
@media (prefers-color-scheme: light) {
body {
background: #b9cbd8;
color: black;
}
main {
background: #fffd;
}
a:any-link {
color: #092b45;
}
}
body {
font-family: sans-serif;
2023-09-12 17:30:36 -06:00
background-image: url("bg.png");
background-size: contain;
background-blend-mode: soft-light;
background-attachment: fixed;
}
canvas.wallpaper {
position: fixed;
display: block;
z-index: -1000;
top: 0;
left: 0;
height: 100vh;
width: 100vw;
opacity: 0.2;
image-rendering: pixelated;
}
main {
max-width: 40em;
margin: auto;
padding: 1px 3px;
border-radius: 5px;
}
h1 {
padding: 3px;
2018-09-18 18:22:03 -06:00
}
p {
margin: 1em 0em;
}
form, pre {
margin: 1em;
2023-09-12 19:30:53 -06:00
overflow-x: auto;
2018-09-18 18:22:03 -06:00
}
2018-10-02 19:21:54 -06:00
input, select {
2018-09-18 18:22:03 -06:00
padding: 0.6em;
margin: 0.2em;
2018-10-09 16:05:02 -06:00
max-width: 30em;
2018-09-18 18:22:03 -06:00
}
.notification, .error {
padding: 0 1em;
border-radius: 8px;
2018-09-18 18:22:03 -06:00
}
2018-09-18 18:22:03 -06:00
nav ul, .category ul {
padding: 1em;
}
nav li, .category li {
display: inline;
margin: 1em;
}
iframe#body {
border: inherit;
width: 100%;
}
img {
max-width: 100%;
}
input:invalid {
border-color: red;
}
2023-09-12 17:32:34 -06:00
.answer_ok {
cursor: help;
}
2019-02-22 17:43:04 -07:00
#messages {
min-height: 3em;
}
2020-02-29 17:12:35 -07:00
#rankings {
width: 100%;
position: relative;
}
2020-02-29 17:12:35 -07:00
#rankings span {
font-size: 75%;
display: inline-block;
overflow: hidden;
height: 1.7em;
}
2020-02-29 17:12:35 -07:00
#rankings span.teamname {
font-size: inherit;
color: white;
text-shadow: 0 0 3px black;
opacity: 0.8;
position: absolute;
right: 0.2em;
}
2020-02-29 17:12:35 -07:00
#rankings div * {white-space: nowrap;}
.cat0, .cat8, .cat16 {background-color: #a6cee3; color: black;}
.cat1, .cat9, .cat17 {background-color: #1f78b4; color: white;}
.cat2, .cat10, .cat18 {background-color: #b2df8a; color: black;}
.cat3, .cat11, .cat19 {background-color: #33a02c; color: white;}
.cat4, .cat12, .cat20 {background-color: #fb9a99; color: black;}
.cat5, .cat13, .cat21 {background-color: #e31a1c; color: white;}
.cat6, .cat14, .cat22 {background-color: #fdbf6f; color: black;}
.cat7, .cat15, .cat23 {background-color: #ff7f00; color: black;}
#devel {
overflow: auto;
2019-02-22 17:43:04 -07:00
}
2020-02-29 17:12:35 -07:00
li[draggable]::before {
content: "↕";
padding: 0.5em;
cursor: move;
}
li[draggable] {
list-style: none;
}
[draggable].moving {
opacity: 0.4;
}
[draggable].over {
border: 1px white dashed;
}
#cacheButton.disabled {
display: none;
}