2020-08-16 05:25:54 -05:00
|
|
|
/*
|
|
|
|
* styles.css
|
|
|
|
* Copyright (C) 2020 Vintage Salt
|
|
|
|
*
|
|
|
|
* Distributed under terms of the MIT license.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* GLOBALS */
|
|
|
|
|
|
|
|
:root {
|
2020-08-16 12:08:38 -05:00
|
|
|
--background-bright: #fdfcfa;
|
|
|
|
--background: #ecebe9;
|
|
|
|
--link: #286a9d;
|
|
|
|
--link-hover: #3ea5f3;
|
|
|
|
--shadow: 8px -5px #d6d5d3;
|
|
|
|
--text: #414040;
|
2020-08-16 05:25:54 -05:00
|
|
|
}
|
|
|
|
html {
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
|
|
|
body {
|
|
|
|
background: var(--background);
|
|
|
|
color: var(--text);
|
2020-09-01 06:43:27 -05:00
|
|
|
font-family: "Roboto", sans-serif;
|
2020-08-16 05:25:54 -05:00
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* TYPES */
|
|
|
|
/* a */
|
|
|
|
a {
|
|
|
|
color: var(--link);
|
|
|
|
text-decoration: none;
|
|
|
|
transition: .08s ease-in;
|
|
|
|
}
|
|
|
|
a:hover {
|
|
|
|
color: var(--link-hover);
|
|
|
|
}
|
|
|
|
/* code */
|
|
|
|
code {
|
2020-08-16 05:40:05 -05:00
|
|
|
background: var(--text);
|
2020-08-16 05:25:54 -05:00
|
|
|
border-radius: 3px;
|
2020-08-16 05:40:05 -05:00
|
|
|
color: var(--background);
|
|
|
|
display: inline-block;
|
2020-08-16 05:25:54 -05:00
|
|
|
font-size: 11pt;
|
|
|
|
padding: 2px 4px;
|
|
|
|
}
|
2020-08-16 06:32:49 -05:00
|
|
|
dl {
|
|
|
|
list-style-type: none;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
dl dt {
|
|
|
|
font-weight: bold;
|
|
|
|
margin: 1em 0 0 0;
|
|
|
|
}
|
|
|
|
dl dd {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2020-08-16 05:25:54 -05:00
|
|
|
|
2020-08-16 05:40:05 -05:00
|
|
|
/* CUSTOM DIVS AND SPANS */
|
|
|
|
a.quickbutton {
|
|
|
|
background: var(--background-bright);
|
|
|
|
border-radius: 8px;
|
|
|
|
box-shadow: 5px 5px var(--shadow);
|
|
|
|
display: block;
|
|
|
|
font-size: 150%;
|
|
|
|
margin: 0.5em 0;
|
|
|
|
padding: 1em;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
a.quickbutton:hover {
|
|
|
|
background: var(--link-hover);
|
|
|
|
color: var(--background);
|
|
|
|
}
|
|
|
|
div.break {
|
|
|
|
width: 4em;
|
|
|
|
margin: 2em auto;
|
|
|
|
border-bottom: 3px double var(--text);
|
|
|
|
}
|
|
|
|
img.bigimg {
|
|
|
|
border-radius: 8px;
|
|
|
|
box-shadow: 5px 5px var(--shadow);
|
|
|
|
display: block;
|
|
|
|
margin: 1em auto;
|
|
|
|
}
|
|
|
|
|
2020-08-16 05:25:54 -05:00
|
|
|
/* HIERARCHICAL CLASSES */
|
|
|
|
/* HEADER */
|
|
|
|
.header {
|
|
|
|
background: var(--background-bright);
|
|
|
|
box-shadow: 0 5px var(--shadow);
|
|
|
|
}
|
|
|
|
.logocontainer {
|
2020-08-16 06:55:34 -05:00
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2020-08-16 05:25:54 -05:00
|
|
|
padding: 1em 0;
|
|
|
|
}
|
|
|
|
.logo {
|
|
|
|
border-radius: 50%;
|
2020-08-16 06:55:34 -05:00
|
|
|
height: 64px;
|
2020-08-16 05:25:54 -05:00
|
|
|
vertical-align: middle;
|
2020-08-16 06:55:34 -05:00
|
|
|
margin: 0 1em;
|
2020-08-16 05:25:54 -05:00
|
|
|
max-width: 64px;
|
|
|
|
}
|
|
|
|
.header h1 {
|
|
|
|
display: inline;
|
|
|
|
margin: 0;
|
|
|
|
}
|
2020-08-16 06:55:34 -05:00
|
|
|
.header p {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2020-08-16 05:25:54 -05:00
|
|
|
.header nav ul {
|
|
|
|
list-style-type: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.header nav ul li {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 0.8em;
|
|
|
|
}
|
|
|
|
.header nav ul li:hover {
|
|
|
|
background: var(--link-hover);
|
|
|
|
color: var(--background);
|
|
|
|
transition: .08s ease-in;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* CONTENT */
|
|
|
|
.content {
|
|
|
|
max-width: 48em;
|
|
|
|
margin: 2em auto;
|
|
|
|
padding: 1em;
|
|
|
|
}
|
2020-08-16 05:40:05 -05:00
|
|
|
.subcontainer {
|
|
|
|
background: var(--background-bright);
|
|
|
|
border-radius: 8px;
|
|
|
|
box-shadow: 5px 5px var(--shadow);
|
|
|
|
margin: 1em 0;
|
|
|
|
padding: 1em;
|
|
|
|
}
|
2020-08-22 21:13:20 -05:00
|
|
|
.toc {
|
|
|
|
background: var(--background-bright);
|
|
|
|
border-radius: 4px;
|
|
|
|
box-shadow: 5px 5px var(--shadow);
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0 1em 1em 1em;
|
|
|
|
padding: 0 1em;
|
|
|
|
width: auto;
|
|
|
|
}
|
2020-08-16 05:25:54 -05:00
|
|
|
|
|
|
|
/* FOOTER */
|
|
|
|
.footer {
|
|
|
|
font-size: 11px;
|
|
|
|
line-height: 1.3;
|
2020-08-16 05:40:05 -05:00
|
|
|
margin: 0 0 4em 0;
|
2020-08-16 05:25:54 -05:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.footer p {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* MOBILE */
|
|
|
|
@media only screen and (max-width: 600px) {
|
|
|
|
.nomobile {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|