shii.moe

Source for `shii.moe' website.
git clone git://git.knutsen.co/shii.moe
Log | Files | Refs

commit 692fdc5391245ba867060d49d4b6cba0fbbb3baf
parent f327667318cd3e28255dd3ea5541de36cbb6b4f4
Author: Shiimoe <samuelfrost@tuta.io>
Date:   Tue, 23 Mar 2021 22:53:13 +0000

Underline hyper-links.

Diffstat:
Mstyle.css | 13++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/style.css b/style.css @@ -1,14 +1,13 @@ @import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;1,400;1,600&display=swap'); -@import url('https://cdn.jsdelivr.net/npm/pygments-css@1.0.0/github.css'); ::selection { background: pink; /* WebKit/Blink Browsers */ color: white; - } - ::-moz-selection { +} +::-moz-selection { background: pink; /* Gecko Browsers */ color: white; - } +} html, body { @@ -73,6 +72,7 @@ pre code { } .titleButton { + text-decoration: none; background-color: #acb9f8; display: inline-block; margin: 0.3em 0.3em; @@ -87,6 +87,9 @@ pre code { .titleButton:hover { box-shadow: 0.4em 0.4em 3pt #00000030; } +.titleButton a { + text-decoration: inherit; +} .image-card { width: 100%; @@ -186,7 +189,7 @@ li { } a { - text-decoration: none; + text-decoration: underline; color: inherit; }