diff options
| author | Joe Carstairs <jcarstairs@scottlogic.com> | 2024-07-16 14:47:37 +0100 |
|---|---|---|
| committer | Joe Carstairs <jcarstairs@scottlogic.com> | 2024-07-16 14:47:37 +0100 |
| commit | c32b100ba00d720621336d5439c753f51e408f56 (patch) | |
| tree | 5eab9e7f5a5e519142038d98267d56233e3e0b8e | |
| parent | 95f812ab8544336586c76fd9bfe54cdd6c991b29 (diff) | |
Improves emphasis styling
| -rw-r--r-- | website/public/css/base.css | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/website/public/css/base.css b/website/public/css/base.css index 44eeab0..d4c070a 100644 --- a/website/public/css/base.css +++ b/website/public/css/base.css @@ -224,6 +224,13 @@ nav ul { } } +/** Emphasis */ + +strong { + font-weight: bold; + font-style: italic; +} + /** Blog feed */ .h-feed ul { @@ -242,7 +249,12 @@ blockquote { font-style: initial; } -blockquote :is(em, i) { +blockquote :is(b, strong) { + font-style: italic; + font-weight: bold; +} + +blockquote :is(i, em) { font-style: normal; } |
