Update to match latest bearblog CSS (#113)

Updates the CSS to match the latest bearblog CSS ~~as of
4bbfe356d4/templates/styles/blog/default.css~~
currently on the production site (which don't actually match what's in
the repo)
This commit is contained in:
Steven Loria 2025-03-18 05:47:02 -05:00 committed by GitHub
parent 550b6a2e47
commit 7cadacb752
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,6 +1,6 @@
<style> <style>
:root { :root {
--width: 800px; --width: 720px;
--font-main: Verdana, sans-serif; --font-main: Verdana, sans-serif;
--font-secondary: Verdana, sans-serif; --font-secondary: Verdana, sans-serif;
--font-scale: 1em; --font-scale: 1em;
@ -16,12 +16,12 @@
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
:root { :root {
--background-color: #333; --background-color: #01242e;
--heading-color: #eee; --heading-color: #eee;
--text-color: #ddd; --text-color: #ddd;
--link-color: #8cc2dd; --link-color: #8cc2dd;
--visited-color: #8b6fcb; --visited-color: #8b6fcb;
--code-background-color: #777; --code-background-color: #000;
--code-color: #ddd; --code-color: #ddd;
--blockquote-color: #ccc; --blockquote-color: #ccc;
} }
@ -53,7 +53,7 @@
} }
a:hover { a:hover {
text-decoration: underline; text-decoration: underline;
} }
nav a { nav a {
@ -69,6 +69,12 @@
cursor: pointer; cursor: pointer;
} }
time {
font-family: monospace;
font-style: normal;
font-size: 15px;
}
main { main {
line-height: 1.6; line-height: 1.6;
} }