pyratelog

personal blog
git clone git://git.pyratebeard.net/pyratelog.git
Log | Files | Refs | README

commit 777428ef71e31d981f115272b6f0fa4aadccb7fb
parent 7d9fb906ee646442d8e40e27a5930555ac60e2cf
Author: pyratebeard <root@pyratebeard.net>
Date:   Tue,  8 Apr 2025 11:45:14 +0100

refactor(style): move tag css to site specific section

Diffstat:
Mstyle.css | 41++++++++++++++++++++++-------------------
1 file changed, 22 insertions(+), 19 deletions(-)

diff --git a/style.css b/style.css @@ -29,10 +29,12 @@ body { line-height: 1.5; } -header { +header, +footer { margin-left: 88px; } + header > span, header > span > h1 { margin-bottom: 0px; @@ -48,7 +50,8 @@ header > p { } @media (max-width: 767px) { - header { + header, + footer { margin-left: 20px; } .container { @@ -108,23 +111,6 @@ a.index:focus { background-color: #aabb46; } -a.tags, -a.tagsindex { - background-color: #323232 !important; - padding: 2px 4px 2px 4px !important; - border-radius: 2px !important; -} - -a.tags:active, -a.tags:hover, -a.tags:focus, -a.tagsindex:active, -a.tagsindex:hover, -a.tagsindex:focus { - color: #181512 !important; - background-color: #aabb46 !important; -} - ul { list-style: '- '; line-height: 1.5; @@ -232,3 +218,20 @@ table tr td { padding: 4px 10px; } + +a.tags, +a.tagsindex { + background-color: #323232 !important; + padding: 2px 4px 2px 4px !important; + border-radius: 2px !important; +} + +a.tags:active, +a.tags:hover, +a.tags:focus, +a.tagsindex:active, +a.tagsindex:hover, +a.tagsindex:focus { + color: #181512 !important; + background-color: #aabb46 !important; +}