diff options
Diffstat (limited to 'Userland/Libraries/LibWeb/CSS/Default.css')
-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; |