Compare commits

..

No commits in common. "8bf23880ba3b8058164dfca10295fd1813cf615c" and "88fff1d0a051b2284c0141c1d9326f5217a16beb" have entirely different histories.

2 changed files with 12 additions and 33 deletions

View File

@ -1,7 +1,7 @@
--- ---
title: Xmas Eve title: Xmas Eve
subtitle: Inspired by a "Greek" Salad I Kind of Liked subtitle: Inspired by a "Greek" Salad I Kind of Liked
date: 2023-12-24 date: 2023-12-25
--- ---
![Spinach, tomatoes, artichokes, and olives in a bowl](image.png) ![Spinach, tomatoes, artichokes, and olives in a bowl](image.png)

View File

@ -9,7 +9,7 @@ html {
} }
body { body {
background-color: #fffa; background-color: rgba(255, 255, 255, 0.8);
margin: auto; margin: auto;
padding: 1em; padding: 1em;
border-radius: 1em; border-radius: 1em;
@ -29,14 +29,11 @@ input:read-only {
} }
header { header {
background: #e0e4cc; background-color: #e0e4cc;
}
header {
border-radius: 0.25em; border-radius: 0.25em;
padding: 0.1em 0.5em; padding: 0.1em 0.5em;
margin-top: 0; margin-top: 0;
box-shadow: 0.2em 0.2em 1em #8885; box-shadow: 0.2em 0.2em 1em rgba(0,0,0,0.1);
} }
header * { header * {
margin: 0.2em; margin: 0.2em;
@ -65,14 +62,14 @@ h1, h2, h3, h4, h5, h6 {
} }
a { a {
color: #246; color: #38d;
text-decoration: none; text-decoration: none;
} }
a:visited { a:visited {
color: #479; color: #579;
} }
a:hover { a:hover {
color: #a52; color: #f83;
} }
img.face { img.face {
@ -81,10 +78,12 @@ img.face {
} }
pre { pre {
background: #e0e4cc;
overflow-x: auto; overflow-x: auto;
} }
blockquote { blockquote {
background: #e0e4cc;
padding: 0.1em 1em; padding: 0.1em 1em;
border-radius: 0.4em; border-radius: 0.4em;
} }
@ -239,31 +238,11 @@ caption {
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
html { html {
color: white;
background-color: black;
background-image: url("../images/bg-dark.jpg"); background-image: url("../images/bg-dark.jpg");
filter: invert(1);
} }
img,video,canvas {
body { filter: invert(1);
background-color: #444d;
}
header, pre, blockquote {
background-color: #134;
}
h1, h2, h3, h4, h5, h6 {
color: #e98;
}
a {
color:#9be;
}
a:visited {
color: #48b;
}
a:hover {
color: #f83;
} }
} }