152 lines
2.0 KiB
CSS
152 lines
2.0 KiB
CSS
/* */
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
}
|
|
|
|
html {
|
|
font-family: 'IBM Plex Serif', serif;
|
|
font-size: 18px;
|
|
}
|
|
|
|
body {
|
|
border: 0px;
|
|
margin: 0px;
|
|
padding: 0px 0px 2em 0px;
|
|
color: black;
|
|
background-color: #fcfffc;
|
|
}
|
|
|
|
.main {
|
|
margin: 1em 0px 0px 0px;
|
|
padding: 0px 0.2em;
|
|
width: 100%;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.footer {
|
|
text-align: center;
|
|
font-size: small;
|
|
margin-bottom: 2em;
|
|
}
|
|
|
|
.title {
|
|
text-align: center;
|
|
}
|
|
|
|
h1 {
|
|
margin-top: 4em;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3 {
|
|
color: #62757f;
|
|
letter-spacing: 0.1em;
|
|
margin-top: 2em;
|
|
}
|
|
h1 {
|
|
font-size: xx-large;
|
|
font-weight: 200;
|
|
}
|
|
h2 {
|
|
line-height: 120%;
|
|
font-size: x-large;
|
|
font-weight: 300;
|
|
}
|
|
h3 {
|
|
margin-top: 0px;
|
|
font-size: large;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.tags {
|
|
color: #0000ee;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: #0000ee;
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
table.outer {
|
|
padding: 0px 1em;
|
|
}
|
|
|
|
table.outer > tr > td,
|
|
table.outer > tbody > tr > td {
|
|
padding: 0px 1em;
|
|
border-left: 1px solid #62757f;
|
|
}
|
|
|
|
table.outer > tr > td:first-child,
|
|
table.outer > tbody > tr > td:first-child {
|
|
border-left: 0px;
|
|
}
|
|
|
|
table table {
|
|
width: 20em;
|
|
min-width: 20em;
|
|
max-width: 20em;
|
|
table-layout: fixed;
|
|
}
|
|
|
|
table table td {
|
|
padding: 0.2em 0px;
|
|
vertical-align: center;
|
|
white-space: nowrap;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
table table tr > td:first-child {
|
|
width: 100px;
|
|
min-width: 100px;
|
|
padding-right: 0.5em;
|
|
}
|
|
|
|
table table td > div {
|
|
height: 10px;
|
|
margin-top: auto;
|
|
background-color: #62757f;
|
|
}
|
|
|
|
.form {
|
|
margin: 2em auto 0px auto;
|
|
text-align: center;
|
|
line-height: 150%;
|
|
}
|
|
|
|
table.choice {
|
|
padding-top: 1em;
|
|
margin: 0px auto;
|
|
border: 1px solid #62757f;
|
|
}
|
|
|
|
table.choice td {
|
|
vertical-align: top;
|
|
text-align: left;
|
|
padding: 0.4em 1.2em;
|
|
}
|
|
|
|
label {
|
|
cursor: pointer;
|
|
}
|
|
label:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
#data {
|
|
background-color: inherit;
|
|
transition: all 200ms linear;
|
|
}
|
|
#data.fade {
|
|
background-color: #00fa9a;
|
|
transition: all 20ms linear;
|
|
}
|