From 69ad4ffdbbc151c8252ec3faa1105eb319536dd5 Mon Sep 17 00:00:00 2001 From: claw0ry Date: Fri, 20 Dec 2024 09:06:26 +0100 Subject: theme: christmas effect --- themes/plaintext/static/style.css | 53 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) (limited to 'themes/plaintext/static/style.css') diff --git a/themes/plaintext/static/style.css b/themes/plaintext/static/style.css index e4bdb08..12ecd33 100644 --- a/themes/plaintext/static/style.css +++ b/themes/plaintext/static/style.css @@ -72,6 +72,45 @@ table tr td { display: inline-block; } +/* CHRISTMAS THEME */ +/* RED: #D6001C; + * GREEN: #00873E; + */ +body { + background: #D6001C; + color: white; +} + +hr { + border-color: #00873E; + border-width: 2px; +} + +a, +a:hover { + color: white; + font-style: italic; +} + +pre { + background: #00873E; + overflow-x: auto; + padding: 10px; + font-size: 14px; +} + +.page-title h1 { + margin: 0; + display: inline-block; +} + +.post-title a, +.read-more { + color: white; + background: #00873E; + font-style: normal; +} + @media (prefers-color-scheme: dark) { body { background: #212121; @@ -85,4 +124,18 @@ table tr td { a:visited { color: #96f; } + + /* christmas */ + a, + a:hover, + a:visited { + color: #D6001C; + } + + .post-title a, + .read-more, + .read-more:hover, + .read-more:visited { + color: white; + } } -- cgit v1.2.3