2018-01-12 16:36:31 +00:00
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue;
|
|
|
|
font-size: 14px;
|
2018-02-11 00:22:12 +00:00
|
|
|
line-height: 1.4;
|
2018-01-12 17:05:03 +00:00
|
|
|
color: var(--body-text-color);
|
2018-01-12 17:01:46 +00:00
|
|
|
background: var(--body-bg);
|
2018-01-16 02:29:28 +00:00
|
|
|
position: fixed;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
top: 0;
|
2018-01-12 16:36:31 +00:00
|
|
|
}
|
|
|
|
|
2018-01-16 02:29:28 +00:00
|
|
|
.container {
|
2018-01-13 07:28:13 +00:00
|
|
|
overflow-y: auto;
|
2018-01-16 02:29:28 +00:00
|
|
|
overflow-x: hidden;
|
2018-01-12 16:36:31 +00:00
|
|
|
-webkit-overflow-scrolling: touch;
|
2018-01-21 22:11:53 +00:00
|
|
|
will-change: transform; /* avoids "Repaints on Scroll" warning in Chrome */
|
2018-01-16 02:29:28 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 72px;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
2018-01-31 06:40:40 +00:00
|
|
|
@media (max-width: 767px) {
|
|
|
|
top: 62px;
|
|
|
|
}
|
2018-01-16 02:29:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
main {
|
2018-01-12 16:36:31 +00:00
|
|
|
position: relative;
|
2018-01-16 05:58:31 +00:00
|
|
|
width: 602px;
|
|
|
|
max-width: 100vw;
|
2018-01-28 02:25:49 +00:00
|
|
|
padding: 0;
|
2018-01-12 16:36:31 +00:00
|
|
|
box-sizing: border-box;
|
2018-01-28 02:25:49 +00:00
|
|
|
margin: 30px auto 15px;
|
2018-01-12 17:01:46 +00:00
|
|
|
background: var(--main-bg);
|
|
|
|
border: 1px solid var(--main-border);
|
2018-01-12 16:36:31 +00:00
|
|
|
border-radius: 1px;
|
2018-03-14 00:14:57 +00:00
|
|
|
min-height: 60vh;
|
2018-01-14 19:34:53 +00:00
|
|
|
@media (max-width: 767px) {
|
2018-01-16 02:29:28 +00:00
|
|
|
margin: 5px auto 15px;
|
2018-01-14 19:34:53 +00:00
|
|
|
}
|
2018-01-12 16:36:31 +00:00
|
|
|
}
|
|
|
|
|
2018-03-07 17:25:07 +00:00
|
|
|
footer {
|
|
|
|
width: 602px;
|
|
|
|
max-width: 100vw;
|
|
|
|
box-sizing: border-box;
|
|
|
|
margin: 20px auto;
|
|
|
|
border-radius: 1px;
|
|
|
|
background: var(--main-bg);
|
|
|
|
font-size: 0.9em;
|
2018-03-11 19:13:12 +00:00
|
|
|
padding: 20px;
|
2018-03-07 17:25:07 +00:00
|
|
|
border: 1px solid var(--main-border);
|
|
|
|
}
|
|
|
|
|
2018-01-12 16:36:31 +00:00
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
|
|
margin: 0 0 0.5em 0;
|
|
|
|
font-weight: 400;
|
|
|
|
line-height: 1.2;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
font-size: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
2018-01-12 17:01:46 +00:00
|
|
|
color: var(--anchor-text);
|
2018-01-12 16:36:31 +00:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:visited {
|
2018-01-12 17:01:46 +00:00
|
|
|
color: var(--anchor-text);
|
2018-01-12 16:36:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
input {
|
2018-01-12 17:01:46 +00:00
|
|
|
border: 1px solid var(--input-border);
|
2018-01-12 16:36:31 +00:00
|
|
|
padding: 5px;
|
2018-02-26 00:26:43 +00:00
|
|
|
box-sizing: border-box;
|
2018-01-12 16:36:31 +00:00
|
|
|
}
|
|
|
|
|
2018-03-07 07:27:36 +00:00
|
|
|
button, .button {
|
2018-01-12 16:36:31 +00:00
|
|
|
font-size: 1.2em;
|
2018-01-12 17:01:46 +00:00
|
|
|
background: var(--button-bg);
|
2018-01-12 16:36:31 +00:00
|
|
|
border-radius: 2px;
|
|
|
|
padding: 10px 15px;
|
2018-01-12 17:01:46 +00:00
|
|
|
border: 1px solid var(--button-border);
|
2018-01-12 16:36:31 +00:00
|
|
|
cursor: pointer;
|
2018-01-12 17:01:46 +00:00
|
|
|
color: var(--button-text);
|
2018-01-12 16:36:31 +00:00
|
|
|
|
2018-01-14 02:59:49 +00:00
|
|
|
&:hover {
|
|
|
|
background: var(--button-bg-hover);
|
2018-03-07 07:27:36 +00:00
|
|
|
text-decoration: none;
|
2018-01-14 02:59:49 +00:00
|
|
|
}
|
2018-01-12 16:36:31 +00:00
|
|
|
|
2018-01-14 02:59:49 +00:00
|
|
|
&:active {
|
|
|
|
background: var(--button-bg-active);
|
|
|
|
}
|
2018-01-12 16:36:31 +00:00
|
|
|
|
2018-01-14 02:59:49 +00:00
|
|
|
&[disabled] {
|
|
|
|
opacity: 0.35;
|
|
|
|
pointer-events: none;
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
2018-01-12 16:36:31 +00:00
|
|
|
|
2018-01-14 02:59:49 +00:00
|
|
|
&.primary {
|
|
|
|
border: 1px solid var(--button-primary-border);
|
|
|
|
background: var(--button-primary-bg);
|
|
|
|
color: var(--button-primary-text);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: var(--button-primary-bg-hover);
|
|
|
|
}
|
2018-01-12 16:36:31 +00:00
|
|
|
|
2018-01-14 02:59:49 +00:00
|
|
|
&:active {
|
|
|
|
background: var(--button-primary-bg-active);
|
|
|
|
}
|
|
|
|
}
|
2018-01-12 16:36:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
p, label, input {
|
|
|
|
font-size: 1.3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul, li, p {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2018-01-14 04:33:14 +00:00
|
|
|
.hidden {
|
|
|
|
opacity: 0;
|
2018-01-21 18:53:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
*:focus {
|
|
|
|
outline: 2px solid var(--focus-outline);
|
|
|
|
}
|
|
|
|
|
|
|
|
button::-moz-focus-inner {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
2018-02-07 04:54:49 +00:00
|
|
|
/* Firefox hacks to remove ugly red border.
|
|
|
|
Unnecessary since it gives a warning if you submit an empty field anyway. */
|
|
|
|
input:required, input:invalid {
|
|
|
|
box-shadow: none;
|
2018-02-26 04:45:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
textarea {
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: inherit;
|
|
|
|
box-sizing: border-box;
|
2018-03-03 05:55:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes spin {
|
|
|
|
0% {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
transform: rotate(180deg);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.spin {
|
|
|
|
animation: spin 2s infinite linear;
|
2018-02-07 04:54:49 +00:00
|
|
|
}
|