about summary refs log tree commit diff stats
path: root/res
diff options
context:
space:
mode:
Diffstat (limited to 'res')
-rw-r--r--res/quirk.css10
-rw-r--r--res/ua.css32
2 files changed, 30 insertions, 12 deletions
diff --git a/res/quirk.css b/res/quirk.css
new file mode 100644
index 00000000..0515f028
--- /dev/null
+++ b/res/quirk.css
@@ -0,0 +1,10 @@
+
+table {
+	font-weight: initial;
+	font-style: initial;
+	font-variant: initial;
+	font-size: initial;
+	line-height: initial;
+	white-space: initial;
+	text-align: initial;
+}
diff --git a/res/ua.css b/res/ua.css
index 920232d7..3c2b4daa 100644
--- a/res/ua.css
+++ b/res/ua.css
@@ -46,6 +46,26 @@ colgroup {
 	display: table-column-group;
 }
 
+tr {
+	display: table-row;
+}
+
+col {
+	display: table-column;
+}
+
+th {
+	display: table-cell;
+	font-weight: bold;
+	vertical-align: inherit;
+}
+
+td {
+	display: table-cell;
+	text-align: unset;
+	vertical-align: inherit;
+}
+
 input {
 	margin-right: 1ch;
 	white-space: pre;
@@ -92,18 +112,6 @@ input:is([type="submit"], [type="button"], [type="reset"])::after {
 	color: red;
 }
 
-tr {
-	display: table-row;
-}
-
-col {
-	display: table-column;
-}
-
-th, td {
-	display: table-cell;
-}
-
 li {
 	display: list-item;
 }
n2'>2 3 4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82