348 lines
5.1 KiB
CSS
348 lines
5.1 KiB
CSS
@font-face {
|
|
font-family: 'Arvo';
|
|
font-style: normal;
|
|
src: url('../fonts/Arvo-Regular.woff2') format('woff2');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Arvo';
|
|
font-weight: bold;
|
|
src: url('../fonts/Arvo-Bold.woff2') format('woff2');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Arvo';
|
|
font-style: italic;
|
|
src: url('../fonts/Arvo-Italic.woff2') format('woff2');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Arvo';
|
|
font-weight: bold;
|
|
font-style: italic;
|
|
src: url('../fonts/Arvo-BoldItalic.woff2') format('woff2');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Lato';
|
|
font-style: normal;
|
|
src: url('../fonts/Lato-Regular.woff2') format('woff2');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Lato';
|
|
font-weight: bold;
|
|
src: url('../fonts/Lato-Bold.woff2') format('woff2');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Lato';
|
|
font-style: italic;
|
|
src: url('../fonts/Lato-Italic.woff2') format('woff2');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Lato';
|
|
font-weight: bold;
|
|
font-style: italic;
|
|
src: url('../fonts/Lato-BoldItalic.woff2') format('woff2');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Quantico';
|
|
font-style: normal;
|
|
src: url('../fonts/Quantico-Regular.woff2') format('woff2');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Quantico';
|
|
font-weight: bold;
|
|
src: url('../fonts/Quantico-Bold.woff2') format('woff2');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Quantico';
|
|
font-style: italic;
|
|
src: url('../fonts/Quantico-Italic.woff2') format('woff2');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Quantico';
|
|
font-weight: bold;
|
|
font-style: italic;
|
|
src: url('../fonts/Quantico-BoldItalic.woff2') format('woff2');
|
|
}
|
|
|
|
@font-family {
|
|
font-family: 'Monoid';
|
|
font-style: normal;
|
|
src: url('../fonts/Monoid-Regular.woff2') format('woff2');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Monoid';
|
|
font-weight: bold;
|
|
src: url('../fonts/Monoid-Bold.woff2') format('woff2');
|
|
}
|
|
|
|
@font-family {
|
|
font-family: 'Monoid';
|
|
font-style: italic;
|
|
src: url('../fonts/Monoid-Italic.woff2') format('woff2');
|
|
}
|
|
|
|
:root {
|
|
--yellow: #fcdb03;
|
|
--orange: #fc9403;
|
|
--red: #ff2600;
|
|
--magenta: #d33682;
|
|
--violet: #6c71c4;
|
|
--blue: #3e8ef0;
|
|
--cyan: #2aa198;
|
|
--green: #327841;
|
|
--fg0: #9c9c9c;
|
|
--fg1: #828181;
|
|
--fg2: #5e5e5e;
|
|
--fg3: #403f3f;
|
|
--fg4: #262626;
|
|
--fg5: #000000;
|
|
--bg0: #ffffff ;
|
|
--bg1: #e6e6e6;
|
|
--dark: #000000;
|
|
--light: #ffffff;
|
|
}
|
|
|
|
html {
|
|
font-size: 62.5%;
|
|
background-color: var(--bg0);
|
|
color: var(--fg2);
|
|
}
|
|
|
|
body {
|
|
font-family: "Lato", sans-serif;
|
|
font-size: 1.6rem;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
h1, h2, h3 {
|
|
color: var(--fg3);
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: "Arvo", serif;
|
|
font-weight: normal;
|
|
}
|
|
|
|
header {
|
|
border-bottom: 0.2rem solid var(--magenta);
|
|
margin: 4.2rem 0;
|
|
}
|
|
|
|
main a, footer a {
|
|
color: var(--blue);
|
|
}
|
|
|
|
main a:hover, footer a:hover{
|
|
color: var(--light);
|
|
background: var(--blue);
|
|
}
|
|
|
|
.subdomains li a:hover {
|
|
background: none !important;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
font-family: "Quantico", monospace;
|
|
}
|
|
|
|
a:hover {
|
|
transition-duration: 0.1s;
|
|
}
|
|
|
|
nav {
|
|
display: flex;
|
|
flex-direction: row;
|
|
text-align: center;
|
|
justify-content: center;
|
|
margin: 0 auto 3rem;
|
|
}
|
|
|
|
nav a {
|
|
font-size: 2rem;
|
|
font-weight: bold;
|
|
color: var(--cyan);
|
|
text-transform: uppercase;
|
|
padding: 0.5rem;
|
|
}
|
|
|
|
nav a:hover {
|
|
background: var(--cyan);
|
|
color: var(--bg0);
|
|
}
|
|
|
|
footer {
|
|
margin-top: 3rem;
|
|
padding: 1.2rem 0;
|
|
border-top: 0.2rem solid var(--magenta);
|
|
font-size: 1.2rem;
|
|
color: var(--fg0);
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2.4rem;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.post-title {
|
|
text-align: center;
|
|
color: var(--fg5) !important;
|
|
}
|
|
|
|
article .post-header {
|
|
font-size: 1.4rem;
|
|
font-style: italic;
|
|
color: var(--fg0);
|
|
}
|
|
|
|
.nattopages {
|
|
text-align: center;
|
|
margin: 1rem auto 3rem;
|
|
}
|
|
|
|
.nattopages a {
|
|
font-weight: bold;
|
|
font-family: "Monoid";
|
|
font-size: 3rem;
|
|
color: var(--fg3);
|
|
text-decoration: none;
|
|
}
|
|
|
|
article > section {
|
|
overflow: auto;
|
|
}
|
|
|
|
.post-teaser > .toc {
|
|
display: none;
|
|
}
|
|
|
|
.center {
|
|
text-align: center;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.verbatim {
|
|
background: var(--bg1);
|
|
}
|
|
|
|
pre {
|
|
font-family: 'Monoid', monospace;
|
|
padding: 2rem;
|
|
border-radius: 1rem;
|
|
border-left: 0.5rem solid var(--cyan);
|
|
background: var(--bg1);
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.toc {
|
|
background: var(--bg1);
|
|
border-radius: 1rem;
|
|
float: none;
|
|
width: max-content;
|
|
}
|
|
|
|
img, video {
|
|
max-width: 100%;
|
|
}
|
|
|
|
.iframe-parent {
|
|
max-width: 100%;
|
|
position: relative;
|
|
height: 0;
|
|
padding-bottom: 56.25%
|
|
}
|
|
|
|
.iframe-parent iframe {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
@media (max-width: 319px) {
|
|
body {
|
|
width: 90%;
|
|
margin: 0;
|
|
padding: 0 5%;
|
|
}
|
|
|
|
footer {
|
|
text-align: center;
|
|
}
|
|
|
|
nav {
|
|
flex-direction: column;
|
|
}
|
|
|
|
nav a {
|
|
display: block;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.toc {
|
|
padding: 1rem;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 320px) {
|
|
body {
|
|
width: 90%;
|
|
margin: 0;
|
|
padding: 0 5%;
|
|
}
|
|
|
|
footer {
|
|
text-align: center;
|
|
}
|
|
|
|
nav a {
|
|
display: inline;
|
|
margin: 0 0.6rem;
|
|
}
|
|
|
|
.toc {
|
|
padding: 1rem;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 639px) {
|
|
nav {
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 640px) {
|
|
body {
|
|
width: 60%;
|
|
margin: 0 auto;
|
|
padding: 0;
|
|
}
|
|
|
|
nav a {
|
|
margin: 0 0 0 1.2rem;
|
|
display: inline;
|
|
}
|
|
|
|
footer {
|
|
text-align: right;
|
|
}
|
|
|
|
.toc {
|
|
padding: 2rem;
|
|
}
|
|
}
|