diff options
author | Lady Gegga <93391300+Xexxa@users.noreply.github.com> | 2022-03-08 17:13:59 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-03-08 18:52:16 +0100 |
commit | 2c1f5cd31035fff09464424cdd769c6927ea2017 (patch) | |
tree | 1a1060cafb5ddce5aa47e4fe87096fd46be11d2f | |
parent | 0b3c1b4c79046125e3d38d752378ed0f221aa5b2 (diff) | |
download | serenity-2c1f5cd31035fff09464424cdd769c6927ea2017.zip |
LibWeb: Add default styling to abbr, acronym, mark, strike and tt
-rw-r--r-- | Userland/Libraries/LibWeb/CSS/Default.css | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/CSS/Default.css b/Userland/Libraries/LibWeb/CSS/Default.css index 8ff60e5bf4..f6855e6608 100644 --- a/Userland/Libraries/LibWeb/CSS/Default.css +++ b/Userland/Libraries/LibWeb/CSS/Default.css @@ -34,7 +34,8 @@ pre { code, kbd, -samp { +samp, +tt { font-family: monospace; } @@ -44,6 +45,7 @@ ins { } s, +strike, del { text-decoration: line-through; } @@ -198,6 +200,15 @@ blockquote { margin-right: 25px; } +mark { + background: yellow; +} + +abbr[title], +acronym[title] { + text-decoration: dotted underline; +} + ul, ol { padding-left: 20px; |