From 16373d3e5568e3ebcebe9a9f2b4feffd5b4aa1ff Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Sun, 8 Mar 2020 11:23:47 -0500 Subject: [PATCH] custom styling to links, lighten up text a bit --- incorporealcms/static/css/style.css | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/incorporealcms/static/css/style.css b/incorporealcms/static/css/style.css index eec7a41..8b122ed 100644 --- a/incorporealcms/static/css/style.css +++ b/incorporealcms/static/css/style.css @@ -1,12 +1,41 @@ html { font-family: sans-serif; padding: 0 1em; + color: #222; } h1,h2,h3,h4,h5,h6 { color: #811610; } +a:link { + color: #222; + font-weight: bold; + text-decoration: none; + border-bottom: 1px dotted #222; +} + +a:visited { + color: #222; + font-weight: bold; + text-decoration: none; + border-bottom: 1px dotted #222; +} + +a:hover { + color: #811610; + font-weight: bold; + text-decoration: none; + border-bottom: 1px dotted #222; +} + +a:active { + color: #811610; + font-weight: bold; + text-decoration: none; + border-bottom: 1px dotted #222; +} + footer { display: block; font-size: 75%;