From b44d5e1fff3985b0aa10d9ec9965ca88462863ac Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Tue, 13 Jul 2021 20:08:21 +0200 Subject: [PATCH] style: color user content links --- panikweb/static/css/_specifics.scss | 40 +++++++++++++++++------------ 1 file changed, 23 insertions(+), 17 deletions(-) diff --git a/panikweb/static/css/_specifics.scss b/panikweb/static/css/_specifics.scss index eb49459..22ada81 100644 --- a/panikweb/static/css/_specifics.scss +++ b/panikweb/static/css/_specifics.scss @@ -1491,26 +1491,32 @@ img.logo.right { /* USER CONTENT */ -div.userContent ul { - margin: 1em 0; -} +.userContent { + ul { + margin: 1em 0; + } -div.userContent h1, -div.userContent h2, -div.userContent h3, -div.userContent h4 { - text-transform: none; - font-family: "Reglo"; - font-weight: normal; -} + h1, h2, h3, h4 { + text-transform: none; + font-family: "Reglo"; + font-weight: normal; + } -div.userContent h1 { font-size: 2em; } -div.userContent h2 { font-size: 1.8em; } -div.userContent h3 { font-size: 1.5em; } -div.userContent h4 { font-size: 1.5em; } -div.userContent a { text-decoration: underline; } + h1 { font-size: 2em; } + h2 { font-size: 1.8em; } + h3 { font-size: 1.5em; } + h4 { font-size: 1.5em; } -div.userContent a.tag { text-decoration: none; } + a { + text-decoration: underline; + color: $secondary; + } + + a.tag { + text-decoration: none; + color: inherit; + } +} @media screen and (max-width: 760px) { #streamSymbol{ -- 2.39.2