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
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)

View File

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