genlog/html/header.html

106 lines
2 KiB
HTML
Raw Normal View History

2022-03-11 00:02:44 +01:00
<!doctype html>
<html lang="en">
2022-03-11 00:02:44 +01:00
<head>
<meta charset="UTF-8">
<meta name=viewport content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=yes">
<meta name="robots" content="nosnippet">
2022-03-11 00:02:44 +01:00
<!-- this website uses watercss: https://watercss.kognise.dev/ -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/water.css">
2022-03-12 01:00:58 +01:00
<style>
2023-08-21 20:19:17 +02:00
a {
color: var(--text-main);
}
a:hover {
text-decoration: none;
color: #9d9d9d;
}
2023-08-21 19:47:08 +02:00
article a::before {
2023-08-21 19:52:05 +02:00
content: "➤ ";
2022-03-11 00:02:44 +01:00
}
2023-08-21 19:47:08 +02:00
a[href^="//"]::before,
2023-08-21 20:19:17 +02:00
a[href^="//"]:hover {
color: #9211ce;
2023-08-21 19:47:08 +02:00
}
2023-08-21 20:19:17 +02:00
a[href^="http"]::before,
a[href^="http"]:hover {
color: #006eff;
2023-08-21 19:47:08 +02:00
}
2023-08-21 20:19:17 +02:00
a[href^="gemini"]::before,
a[href^="gemini"]:hover {
color: #ff5e00;
2023-08-21 19:47:08 +02:00
}
p {
margin: 1em;
}
2023-08-21 19:47:08 +02:00
a::before,
h1::before,
h2::before,
h3::before,
blockquote::before,
.footer {
2023-08-21 17:10:44 +02:00
color: #9d9d9d;
}
2023-08-21 19:47:08 +02:00
h1::before {
content: "# ";
}
h2::before {
content: "## ";
}
h3::before {
content: "### ";
}
2024-04-30 01:16:23 +02:00
h4::before {
content: "#### ";
}
2023-08-21 19:47:08 +02:00
blockquote::before {
content: "> ";
}
2022-03-12 22:58:33 +01:00
blockquote {
2023-08-17 22:42:13 +02:00
margin: 0 1em;
padding: .5em .5em;
border-left: .2em solid #505050;
}
pre {
display: block;
2023-08-17 22:42:13 +02:00
border-left: dotted #505050;
white-space: pre-wrap;
word-break: keep-all;
2023-08-17 22:42:13 +02:00
margin: 0 1em;
padding-left: .7em;
2022-03-12 22:58:33 +01:00
}
2022-03-11 00:17:40 +01:00
.footer {
2022-03-12 01:00:58 +01:00
padding: 2em 2em 0;
2022-03-11 00:17:40 +01:00
text-align: center;
2022-03-11 00:02:44 +01:00
}
</style>
2022-03-12 01:00:58 +01:00
<title>
<!-- TITLE -->
</title>
2022-03-11 00:02:44 +01:00
</head>
<body>
2023-08-21 19:47:08 +02:00
<div class="container">
<article>
<!-- End header.html -->