-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.css
123 lines (111 loc) · 1.97 KB
/
index.css
1
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
:root {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI',
'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji',
'Segoe UI Emoji';
line-height: 1.4;
background: #0d1117;
color: snow;
}
code {
background-color: rgba(101, 108, 118, 0.2);
border-radius: 6px;
color: rgb(68, 147, 248);
padding-left: 3px;
padding-right: 3px;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI',
'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji',
'Segoe UI Emoji';
}
a {
color: #4493f8;
text-underline-offset: 0.2rem;
}
table {
width: 100%;
border-spacing: 0;
border-collapse: separate;
word-break: break-word;
margin-bottom: 15px;
margin-top: 15px;
}
caption {
text-align: left;
padding-bottom: 10px;
position: sticky;
top: 0px;
caption-side: top;
}
footer {
padding: 10px;
display: inline-block;
}
thead {
background: #05070a;
position: sticky;
top: 0px;
}
th {
text-transform: capitalize;
white-space: nowrap;
}
th,
td {
padding: 6px 13px;
border: 1px solid #3d444d;
}
tbody tr:nth-child(odd) {
background: #151b23;
}
tbody tr:hover {
background: hsl(214, 25%, 15%);
}
h2 {
display: inline-block;
}
h3 {
padding: 0;
margin: 0;
}
.content {
margin: 0 auto;
}
.filter {
position: fixed;
top: 0;
right: 0;
z-index: 1;
}
.description {
max-width: min(750px, 100%);
margin: 0 auto;
}
.sponsor {
position: fixed;
bottom: 0;
right: 0;
z-index: 1;
background: #0d1117;
padding: 5px;
}
.sponsor img {
margin-bottom: -4px;
width: 19px;
}
.github {
margin-bottom: -4px;
}
body[data-table-fixed='yes'] table {
table-layout: fixed;
}
body[data-table-fixed='yes'] table td[nowrap] {
white-space: normal;
}
body[data-solid='false'] [data-col='Solid'],
body[data-pota='false'] [data-col='Pota'],
body[data-voby='false'] [data-col='Voby'],
body[data-vue='false'] [data-col='Vue'],
body[data-preact='false'] [data-col='Preact'],
body[data-react='false'] [data-col='React'],
body[data-vscode='false'] [data-col='VSCode'] {
display: none;
}