66 lines
834 B
CSS
66 lines
834 B
CSS
/*
|
|
@font-face {
|
|
font-family: Univers;
|
|
|
|
src: local("Univers"), url("/font/Univers/UniversRegular.ttf"),
|
|
url("/font/Univers/UniversBold.ttf");
|
|
}
|
|
*/
|
|
|
|
* {
|
|
font-family: Univers, sans-serif;
|
|
}
|
|
|
|
body {
|
|
padding: 1rem;
|
|
margin: 0;
|
|
width: calc(100% - 2rem);
|
|
|
|
margin: auto;
|
|
max-width: 80ch;
|
|
|
|
font-family: sans-serif;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
img {
|
|
display: block;
|
|
margin: auto;
|
|
|
|
max-width: 100%;
|
|
}
|
|
|
|
code {
|
|
font-family: "Anonymous Pro", monospace;
|
|
}
|
|
|
|
pre {
|
|
font-family: "Anonymous Pro", monospace;
|
|
padding: 1rem;
|
|
|
|
overflow: auto;
|
|
scrollbar-width: thin;
|
|
|
|
color: white;
|
|
background-color: #191724;
|
|
}
|
|
|
|
blockquote {
|
|
color: green;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
body {
|
|
background-color: #1c1b22;
|
|
color: white;
|
|
}
|
|
|
|
a:link {
|
|
color: #875fff;
|
|
}
|
|
|
|
a:visited {
|
|
color: magenta;
|
|
}
|
|
}
|