2015-05-03 21:50:25 -07:00
|
|
|
html, body {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
body {
|
|
|
|
margin: 0px;
|
|
|
|
font-family: "Segoe UI", GillSans, Helvetica, sans-serif;
|
|
|
|
font-weight: lighter;
|
|
|
|
}
|
2015-05-07 09:15:41 -07:00
|
|
|
blockquote {
|
|
|
|
background: rgba(0, 0, 0, 0.05);
|
|
|
|
}
|
|
|
|
h1 {
|
|
|
|
font-size: 130%;
|
|
|
|
}
|
|
|
|
h2 {
|
|
|
|
font-size: 125%;
|
|
|
|
}
|
|
|
|
h3 {
|
|
|
|
font-size: 120%;
|
|
|
|
}
|
|
|
|
h4 {
|
|
|
|
font-size: 115%;
|
|
|
|
}
|
|
|
|
h5 {
|
|
|
|
font-size: 110%;
|
|
|
|
}
|
|
|
|
h6 {
|
|
|
|
font-size: 105%;
|
|
|
|
}
|
2015-05-03 21:50:25 -07:00
|
|
|
header {
|
|
|
|
font-size: 140%;
|
2015-05-06 09:16:24 -07:00
|
|
|
font-weight: bold;
|
2015-05-03 21:50:25 -07:00
|
|
|
}
|
|
|
|
footer {
|
|
|
|
font-size: 90%;
|
2015-05-06 09:16:24 -07:00
|
|
|
}
|
|
|
|
form {
|
|
|
|
margin-top: auto;
|
|
|
|
margin-bottom: auto;
|
2015-05-03 21:50:25 -07:00
|
|
|
}
|
|
|
|
textarea {
|
|
|
|
padding: 0;
|
|
|
|
resize: none;
|
|
|
|
}
|
2016-10-16 21:46:02 -07:00
|
|
|
.detail {
|
|
|
|
font-size: 80%;
|
|
|
|
font-style: italic;
|
|
|
|
white-space: pre-wrap;
|
|
|
|
}
|
2015-05-03 21:50:25 -07:00
|
|
|
.flex-rows {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
.flex-columns {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.flex-fill {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-basis: 0;
|
2015-05-07 23:11:28 -07:00
|
|
|
min-width: 0;
|
|
|
|
min-height: 0;
|
2015-05-03 21:50:25 -07:00
|
|
|
}
|
2015-05-05 00:00:04 -07:00
|
|
|
.highlight {
|
|
|
|
background: yellow;
|
|
|
|
}
|
2015-05-03 21:50:25 -07:00
|
|
|
.inset {
|
|
|
|
box-sizing: border-box;
|
2015-05-06 09:16:24 -07:00
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
.inset-side {
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding-left: 2px;
|
|
|
|
padding-right: 2px;
|
2015-05-03 21:50:25 -07:00
|
|
|
}
|
|
|
|
.outlined {
|
|
|
|
border: 1px solid black;
|
2015-05-06 09:16:24 -07:00
|
|
|
margin: 2px;
|
2015-05-07 09:15:41 -07:00
|
|
|
padding-left: 3px;
|
2015-05-03 21:50:25 -07:00
|
|
|
}
|
|
|
|
.overflow-auto-scroll {
|
|
|
|
overflow-x: auto;
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|