Browse Source

LibHTML: Add a basic default UA stylesheet.

We can't parse this yet, but we have to start somewhere. :^)
Andreas Kling 6 năm trước cách đây
mục cha
commit
85d71024f7
1 tập tin đã thay đổi với 38 bổ sung0 xóa
  1. 38 0
      LibHTML/CSS/Default.css

+ 38 - 0
LibHTML/CSS/Default.css

@@ -0,0 +1,38 @@
+html {
+    display: inline;
+    font-family: Katica;
+}
+
+head, link, meta, script, style, title {
+    display: none;
+}
+
+body {
+    display: block;
+    margin: 8;
+}
+
+h1 {
+    display: block;
+    font-family: Pebbleton;
+    font-weight: bold;
+}
+
+pre {
+    display: block;
+    font-family: Csilla;
+}
+
+u, ins {
+    text-decoration: underline;
+}
+
+strong, b {
+    font-family: KaticaBold;
+}
+
+p {
+    display: block;
+    margin-bottom: 8;
+    margin-top: 8;
+}