212 lines
3.0 KiB
CSS
212 lines
3.0 KiB
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
border: 0;
|
|
font-size: 100%;
|
|
vertical-align: baseline;
|
|
}
|
|
|
|
html, body {
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
button::-moz-focus-inner, input::-moz-focus-inner {
|
|
padding: 0;
|
|
border: 0;
|
|
}
|
|
|
|
p, h1, h2, button, a {
|
|
font-family: 'Roboto', sans-serif;
|
|
}
|
|
|
|
h1, h2 {
|
|
font-weight: 500;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 32px;
|
|
}
|
|
|
|
h1>a:link, h1>a:visited {
|
|
color: inherit;
|
|
}
|
|
|
|
h1>a:hover, h1>a:focus {
|
|
text-decoration: none;
|
|
}
|
|
|
|
h2, div.header.small h1 {
|
|
font-size: 24px;
|
|
}
|
|
|
|
p, h2 {
|
|
line-height: 150%;
|
|
}
|
|
|
|
p {
|
|
font-weight: 300;
|
|
font-size: 16px;
|
|
}
|
|
|
|
img {
|
|
display: block;
|
|
}
|
|
|
|
sup, sub {
|
|
position: relative;
|
|
font-size: smaller;
|
|
}
|
|
|
|
sup {
|
|
vertical-align: top;
|
|
top: -0.4em;
|
|
}
|
|
|
|
sub {
|
|
vertical-align: bottom;
|
|
bottom: -0.4em;
|
|
}
|
|
|
|
.mono {
|
|
font-family: 'Roboto Mono', monospace;
|
|
}
|
|
|
|
.bold {
|
|
font-weight: 500;
|
|
}
|
|
|
|
.small {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.justify {
|
|
text-align: justify;
|
|
}
|
|
|
|
.marginTop {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.marginBottom {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
svg.inline, img.inline {
|
|
display: inline-block;
|
|
width: 1em;
|
|
height: 1em;
|
|
vertical-align: -0.15em;
|
|
}
|
|
|
|
a:link, a:visited {
|
|
color: #3b5998;
|
|
font-weight: 500;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover, a:focus {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
button, a.button {
|
|
cursor: pointer;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
color: #ffffff;
|
|
background-color: #5e77aa;
|
|
padding: 0 15px;
|
|
height: 35px;
|
|
border: none;
|
|
border-radius: 3px;
|
|
display: inline-block;
|
|
text-align: center;
|
|
line-height: 35px;
|
|
}
|
|
|
|
button:enabled:hover, button:enabled:focus, a.button:hover, a.button:focus {
|
|
background-color: #29457f;
|
|
outline: none;
|
|
text-decoration: none;
|
|
}
|
|
|
|
button:disabled {
|
|
cursor: not-allowed;
|
|
color: #dddddd;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
button.fullWidth, a.button.fullWidth {
|
|
padding: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
button.gray, a.button.gray {
|
|
background-color: #808080;
|
|
}
|
|
|
|
button.gray:hover, button.gray:focus, a.button.gray:hover, a.button.gray:focus {
|
|
background-color: #555555;
|
|
}
|
|
|
|
button.red, a.button.red {
|
|
background-color: #aa5e5e;
|
|
}
|
|
|
|
button.red:hover, button.red:focus, a.button.red:hover, a.button.red:focus {
|
|
background-color: #7f2929;
|
|
}
|
|
|
|
div.header {
|
|
background-color: #333333;
|
|
height: 50px;
|
|
line-height: 50px;
|
|
padding: 0 12px;
|
|
color: white;
|
|
}
|
|
|
|
div.header>div.grid {
|
|
display: grid;
|
|
grid-template-columns: auto auto;
|
|
}
|
|
|
|
div.header.small {
|
|
height: 40px;
|
|
line-height: 40px;
|
|
}
|
|
|
|
div.main {
|
|
padding: 6px 12px;
|
|
}
|
|
|
|
div.buttonContainer {
|
|
height: 35px;
|
|
}
|
|
|
|
div.buttonContainer>button {
|
|
margin: 0 auto;
|
|
}
|
|
|
|
#loading {
|
|
position: absolute;
|
|
width: 64px;
|
|
height: 64px;
|
|
top: 50%;
|
|
left: 50%;
|
|
margin-top: -32px;
|
|
margin-left: -32px;
|
|
z-index: 5;
|
|
visibility: hidden;
|
|
}
|
|
|
|
@media screen and (max-width: 599px) {
|
|
div.header.small h1 span {
|
|
display: none;
|
|
}
|
|
button {
|
|
padding: 0;
|
|
width: 100%;
|
|
}
|
|
}
|