From c80172cffd0b0db37a72682a15cc587ebb8001d0 Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Sat, 14 May 2022 23:54:21 -0500 Subject: [PATCH] go back to red headers and links as normal-colored text the new way to do the links without adding links to images is probably dumb and/or missing some stuff, but it works and does what I want, and I think I like the old look of the colors better, so time to try it and see if it sticks still --- incorporealcms/static/css/dark.css | 9 +++++++-- incorporealcms/static/css/light.css | 11 ++++++++--- 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/incorporealcms/static/css/dark.css b/incorporealcms/static/css/dark.css index 2da2a0a..1adf23f 100644 --- a/incorporealcms/static/css/dark.css +++ b/incorporealcms/static/css/dark.css @@ -9,11 +9,16 @@ body { background: #111; } -a:link, a:visited { +h1, h2, h3, h4, h5, h6 { color: #B31D15; } -a:hover, a:active { +p a, ul a, ol a { + color: #DDD; + border-bottom: 1px solid #DDD; +} + +p a:hover, ul a:hover, ol a:hover { color: #B31D15; border-bottom: 1px solid #B31D15; } diff --git a/incorporealcms/static/css/light.css b/incorporealcms/static/css/light.css index 017aa4e..f774f83 100644 --- a/incorporealcms/static/css/light.css +++ b/incorporealcms/static/css/light.css @@ -9,13 +9,18 @@ body { background: #EEE; } -a:link, a:visited { +h1, h2, h3, h4, h5, h6 { color: #811610; } -a:hover, a:active { +p a, ul a, ol a { + color: #222; + border-bottom: 1px solid #222; +} + +p a:hover, ul a:hover, ol a:hover { color: #811610; - border-bottom: 1px solid #B31D15; + border-bottom: 1px solid #811610; } div.site-wrap {