blob: e61c05d98f6ea7b3db590a1c9cd8c2f10b43aac9 (
plain) (
tree)
|
|
@font-face {
font-family: "IBM Plex Mono";
src: url("/static/fonts/ibm-plex-mono-medium-normal.woff2") format("woff2");
font-style: normal;
font-weight: 400;
}
@font-face {
font-family: "IBM Plex Mono";
src: url("/static/fonts/ibm-plex-mono-medium-italic.woff2") format("woff2");
font-style: italic;
font-weight: 400;
}
@font-face {
font-family: "IBM Plex Mono";
src: url("/static/fonts/ibm-plex-mono-bold-normal.woff2") format("woff2");
font-style: normal;
font-weight: 600;
}
@font-face {
font-family: "IBM Plex Mono";
src: url("/static/fonts/ibm-plex-mono-bold-italic.woff2") format("woff2");
font-style: italic;
font-weight: 600;
}
* {
font-family: "IBM Plex Mono", monospace;
}
body {
margin: 0 10vw 0 10vw;
max-width: 96ch;
}
h1 {
font-size: 2em;
margin-top: 1em;
}
header h1 {
margin-bottom: 30vh;
}
h1 > a {
text-decoration-style: wavy;
}
a, a:hover, a:visited {
color: blue;
}
ul {
padding-inline-start: 0;
}
ul li {
display: block;
}
footer {
background-color: blue;
margin: 4em 0 4em 0;
}
footer a, footer a:hover, footer a:visited {
color: white;
}
img {
cursor: crosshair;
max-width: 100%;
}
.img-container {
display: flex;
flex-direction: row;
width: 100%;
}
.img-item:not(:last-child) {
margin-right: 1em;
}
|