2020-08-03 00:41:36 +00:00
|
|
|
:root {
|
|
|
|
--fg: #e9e9e9;
|
|
|
|
}
|
2020-07-08 19:26:46 +00:00
|
|
|
body {
|
|
|
|
background-color: #222222;
|
2020-07-13 13:59:16 +00:00
|
|
|
margin: 0;
|
2020-07-08 19:26:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
main {
|
2020-08-03 00:41:36 +00:00
|
|
|
color: var(--fg);
|
2020-07-08 19:26:46 +00:00
|
|
|
font-family: sans;
|
|
|
|
max-width: 1200px;
|
|
|
|
margin: 0 auto;
|
2020-07-13 13:59:16 +00:00
|
|
|
padding: 1rem;
|
2020-07-08 19:26:46 +00:00
|
|
|
}
|
2020-07-09 17:27:24 +00:00
|
|
|
|
|
|
|
h1 > a,
|
|
|
|
h1 > a:visited {
|
2020-08-03 00:41:36 +00:00
|
|
|
color: var(--fg);
|
2020-07-09 17:27:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: cornflowerblue;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:visited {
|
|
|
|
color: mediumorchid;
|
|
|
|
}
|
|
|
|
|
2020-07-13 13:22:33 +00:00
|
|
|
label {
|
2020-08-03 00:41:36 +00:00
|
|
|
display: inline-block;
|
2020-07-13 13:22:33 +00:00
|
|
|
margin-right: 0.25em;
|
2020-08-03 00:41:36 +00:00
|
|
|
margin-bottom: 0.5em;
|
2020-07-13 13:22:33 +00:00
|
|
|
}
|
|
|
|
|
2020-07-09 17:27:24 +00:00
|
|
|
input,
|
|
|
|
select,
|
2020-07-14 11:21:57 +00:00
|
|
|
textarea,
|
2020-07-14 11:45:14 +00:00
|
|
|
.button {
|
2020-07-09 17:27:24 +00:00
|
|
|
background-color: #222222;
|
2020-08-03 00:41:36 +00:00
|
|
|
color: var(--fg);
|
2020-07-09 17:27:24 +00:00
|
|
|
padding: 0.5rem;
|
2020-08-03 00:41:36 +00:00
|
|
|
border: 2px solid var(--fg);
|
2020-07-09 17:27:24 +00:00
|
|
|
border-radius: 5px;
|
|
|
|
margin-bottom: 1rem;
|
2020-07-13 13:59:16 +00:00
|
|
|
max-width: calc(100vw - 3rem - 4px);
|
2020-07-09 17:27:24 +00:00
|
|
|
}
|
|
|
|
|
2020-07-14 11:21:57 +00:00
|
|
|
.button {
|
|
|
|
cursor: pointer;
|
2020-07-14 11:45:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a.button {
|
2020-07-14 11:21:57 +00:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2020-07-14 11:45:14 +00:00
|
|
|
a.button:visited {
|
2020-08-03 00:41:36 +00:00
|
|
|
color: var(--fg);
|
2020-07-14 11:45:14 +00:00
|
|
|
}
|
|
|
|
|
2020-07-14 11:21:57 +00:00
|
|
|
.button:hover {
|
|
|
|
background-color: #444444;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button.main {
|
2020-08-03 00:41:36 +00:00
|
|
|
background-color: #007600;
|
2020-07-09 17:27:24 +00:00
|
|
|
}
|
2020-07-14 11:21:57 +00:00
|
|
|
|
|
|
|
.button.main:hover {
|
|
|
|
background-color: forestgreen;
|
|
|
|
}
|