From ee86e741ebe877cd05d524eeb3409d91bb988bbd Mon Sep 17 00:00:00 2001 From: Dan Cojocaru Date: Wed, 28 Sep 2022 12:23:18 +0300 Subject: [PATCH] Add CSS rules for uncustomised --- base.css | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/base.css b/base.css index 209f80d..b8112d4 100644 --- a/base.css +++ b/base.css @@ -146,7 +146,7 @@ p, ul { margin: 0 8px; } -p.link, a { +p.link, a:not(.no-a-custom) { font-size: 17px; font-weight: 700; } @@ -183,13 +183,18 @@ li.items:not(.disabled):hover:not(:focus) { background-color: lightskyblue; } -a { +a:not(.no-a-custom) { display: block; padding: 8px; color: black; } -a.inline { +a.no-a-custom { + color: inherit; + text-decoration: inherit; +} + +a.inline:not(.no-a-custom) { display: inline; padding: 2px; }