this repo has no description
1html {
2 word-break: break-word;
3 -webkit-text-size-adjust: none;
4 font-variant-ligatures: none;
5}
6
7html.fixed, html.fixed > body {
8 position: fixed;
9 top:0; left:0; right:0; bottom:0;
10 background: var(--T-bg, white);
11}
12
13html, select {
14 font: var(--T-font);
15}
16
17.Row, .Col {
18 display: flex;
19}
20.Col {
21 flex-direction: column;
22}
23
24.Col > *, .Row > * {
25 flex-shrink: 0;
26}
27.Col > .limit, .Row > .limit {
28 flex-shrink: 1;
29 min-height: 0;
30}
31.Col > .fill, .Row > .fill {
32 flex-grow: 1;
33 flex-shrink: 1;
34 min-height: 0;
35 flex-basis: 0;
36}
37
38.Split {
39 display: flex;
40}
41.Split > * {
42 width: 50%;
43}
44
45table.data, table.data td, table.data th {
46 color: black;
47 background: white;
48 border: 1px solid currentColor;
49 border-spacing: 0;
50}
51table.data td, table.data th {
52 padding: 2px 5px;
53 word-break: normal; overflow-wrap: break-word;
54}
55table.data td {
56 color: black;
57 background: white;
58}
59table.data th {
60 font-weight: bold;
61 color: white;
62 background: black;
63}
64table-overflow {
65 overflow-x: auto;
66 background: #222;
67 color: #FFF;
68}
69
70@media all and (max-width: 550px) {
71 .Split {
72 flex-direction: column-reverse;
73 justify-content: left;
74 }
75 .Split > * {
76 width: unset;
77 }
78}
79
80/* ios safari... */
81@supports (-webkit-touch-callout: none) {
82 textarea, input, select {
83 font-size: 16px !important;
84 }
85}