ehehe awawa

This commit is contained in:
Akko
2023-02-12 17:21:41 +01:00
parent b60509f1bf
commit a77a89dc2f
50 changed files with 1882 additions and 294 deletions

View File

@@ -1,21 +1,31 @@
@font-face {
font-family: Roboto;
src: url('static/fonts/Roboto-Regular.ttf');
}
:root {
--site-width: 70%;
--site-width: 750px;
--vert-content-margin: 1.5em;
--accent1: #d2e8b0;
--black: #222;
--white: #FBFBFB;
--background: #FCFAF9;
--font-size: 1.35rem;
--line-height: 1.9rem;
--font-family: "Roboto";
}
body {
font-family: "Baskerville";
font-size: 1.2em;
text-align: justify;
font-family: var(--font-family);
font-size: var(--font-size);
line-height: var(--line-height);
color: var(--black);
background-color: var(--white);
background-color: var(--background);
}
p + p {
/* Prose-style indented paragraphs */
text-indent: 1em;
code {
font-size: calc(var(--font-size) * 0.9);
}
hr {
@@ -65,6 +75,15 @@ a, a:visited {
margin: auto;
}
#publish-date, #modified-date {
font-style: italic;
}
.src, .example {
font-family: "monospace";
font-size: 1rem;
}
/* Set the colors in <pre> blocks from the Leuven theme */
pre {background-color:#FFFFFF;}
pre span.org-builtin {color:#006FE0;font-weight:bold;}