From 1c2a79fa4ea3ee94316aba187817748f35a84f0f Mon Sep 17 00:00:00 2001 From: bdunahu Date: Sun, 24 May 2026 10:36:19 -0400 Subject: Add alternate background theme. --- content/assets/site.css | 29 ++++++++--------------------- content/assets/themes/bg1.jpg | Bin 0 -> 428704 bytes content/assets/themes/bg2.jpg | Bin 0 -> 1453799 bytes content/assets/themes/xtra1.css | 2 ++ content/assets/themes/xtra2.css | 15 +++++++++++++++ 5 files changed, 25 insertions(+), 21 deletions(-) create mode 100644 content/assets/themes/bg1.jpg create mode 100644 content/assets/themes/bg2.jpg create mode 100644 content/assets/themes/xtra1.css create mode 100644 content/assets/themes/xtra2.css (limited to 'content') diff --git a/content/assets/site.css b/content/assets/site.css index 2c8c537..2638f11 100644 --- a/content/assets/site.css +++ b/content/assets/site.css @@ -1,21 +1,9 @@ html { - background: url(background.jpg) no-repeat center center fixed; + background: url(themes/bg1.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; - background-color: rgba(0, 0, 0, 0.5); -} - -@media (max-width: 768px) { - html { - background: url(background-mobile.jpg) no-repeat center center fixed; - -webkit-background-size: cover; - -moz-background-size: cover; - -o-background-size: cover; - background-size: cover; - background-color: rgba(0, 0, 0, 0.5); - } } .container { @@ -38,7 +26,7 @@ body { } body article { - background: rgba(0, 0, 0, 0.8); + background: rgba(0, 0, 0, 0.9); margin: 0px; width: 100%; padding: 20px; @@ -121,23 +109,22 @@ body p { text-align: justify; } -body a { +a { text-decoration: none; - color: #00e64d; + color: #ffad33; } -body a:hover { - color: #99ffbb; +a:hover { + color: #e68a00; text-decoration: underline; } a:visited { - color: #cc9933; + color: #995c00; } .c { padding: 5px; - background: rgba(0, 0, 0, 0.2); border-radius: 8px; margin: 0px 0px 15px 0px; } @@ -203,7 +190,7 @@ intro { intro .intro-ava { width: 70px; height: 60px; - background-image: url("/assets/wolf.png"); + background-image: url("/assets/roskva.png"); background-size: 70px 70px; background-repeat: no-repeat; background-position: left center; diff --git a/content/assets/themes/bg1.jpg b/content/assets/themes/bg1.jpg new file mode 100644 index 0000000..5f1aeb2 Binary files /dev/null and b/content/assets/themes/bg1.jpg differ diff --git a/content/assets/themes/bg2.jpg b/content/assets/themes/bg2.jpg new file mode 100644 index 0000000..60b5737 Binary files /dev/null and b/content/assets/themes/bg2.jpg differ diff --git a/content/assets/themes/xtra1.css b/content/assets/themes/xtra1.css new file mode 100644 index 0000000..622947c --- /dev/null +++ b/content/assets/themes/xtra1.css @@ -0,0 +1,2 @@ +/* stub */ + diff --git a/content/assets/themes/xtra2.css b/content/assets/themes/xtra2.css new file mode 100644 index 0000000..f049df7 --- /dev/null +++ b/content/assets/themes/xtra2.css @@ -0,0 +1,15 @@ +html { + background: url(themes/bg2.jpg) no-repeat center center fixed; +} + +a { + color: #9933ff; +} + +a:hover { + color: #7300e6; +} + +a:visited { + color: #e6ccff; +} -- cgit v1.2.3