Преглед на файлове

LibWeb: Add default styling to abbr, acronym, mark, strike and tt

Lady Gegga преди 3 години
родител
ревизия
2c1f5cd310
променени са 1 файла, в които са добавени 12 реда и са изтрити 1 реда
  1. 12 1
      Userland/Libraries/LibWeb/CSS/Default.css

+ 12 - 1
Userland/Libraries/LibWeb/CSS/Default.css

@@ -34,7 +34,8 @@ pre {
 
 
 code,
 code,
 kbd,
 kbd,
-samp {
+samp,
+tt {
     font-family: monospace;
     font-family: monospace;
 }
 }
 
 
@@ -44,6 +45,7 @@ ins {
 }
 }
 
 
 s,
 s,
+strike,
 del {
 del {
     text-decoration: line-through;
     text-decoration: line-through;
 }
 }
@@ -198,6 +200,15 @@ blockquote {
     margin-right: 25px;
     margin-right: 25px;
 }
 }
 
 
+mark {
+    background: yellow;
+}
+
+abbr[title],
+acronym[title] {
+    text-decoration: dotted underline;
+}
+
 ul,
 ul,
 ol {
 ol {
     padding-left: 20px;
     padding-left: 20px;