mirror of
https://github.com/bigskysoftware/hypermedia-systems.git
synced 2025-10-28 00:04:23 -04:00
71 lines
1.8 KiB
Plaintext
71 lines
1.8 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Building Hypermedia Systems</title>
|
|
<link rel="preconnect" href="https://fonts.bunny.net">
|
|
<link href="https://fonts.bunny.net/css?family=merriweather:400,400i,700,700i|merriweather-sans:400,400i,700,700i" rel="stylesheet" />
|
|
<link rel="stylesheet" href="https://the.missing.style/v1.0.8/missing.css">
|
|
<link rel="stylesheet" href="https://the.missing.style/v1.0.8/missing-prism.css">
|
|
<style>
|
|
@font-face {
|
|
font-family: "Chicago FLF";
|
|
src: url("/fonts/ChicagoFLF.ttf") format("truetype");
|
|
}
|
|
|
|
:root {
|
|
--main-font: "Merriweather", serif;
|
|
--secondary-font: "Merriweather Sans", sans-serif;
|
|
--display-font: "Chicago FLF", "Impact", "Oswald", sans-serif;
|
|
--mono-font: "Berkeley Mono", "Input Mono", "Iosevka", "Liberation Mono", "Victor Mono", "Consolas", monospace, monospace;
|
|
|
|
--rhythm: 1.6rem;
|
|
|
|
font-size: calc((18 / 16) * 100%);
|
|
hyphens: auto;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-weight: normal;
|
|
font-family: var(--display-font);
|
|
}
|
|
|
|
:is(h1, h2, h3, h4, h5, h6) code {
|
|
font-family: inherit;
|
|
}
|
|
|
|
sub-title, .sub-title {
|
|
color: var(--faded-fg);
|
|
}
|
|
|
|
.asciiart {
|
|
line-height: 1;
|
|
}
|
|
|
|
/* #region Asciidoc */
|
|
|
|
.colist {
|
|
counter-reset: colist;
|
|
}
|
|
|
|
.colist li {
|
|
counter-increment: colist;
|
|
margin-inline-start: 1.2ch;
|
|
}
|
|
|
|
.colist li::marker {
|
|
content: "(" counter(colist) ") ";
|
|
font-family: var(--mono-font);
|
|
font-size: .9em;
|
|
font-weight: bold;
|
|
}
|
|
/* #endregion */
|
|
</style>
|
|
</head>
|
|
<body>
|
|
{{ content | safe }}
|
|
</body>
|
|
</html>
|
|
|