-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
73 lines (61 loc) · 1.1 KB
/
style.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
#content-area {
a {
color: rgb(var(--primary-light));
font-weight: 500;
text-decoration: none;
border: none;
}
a:hover {
text-decoration: underline;
}
table {
width: 100%;
display: table;
text-align: center;
font-weight: 400;
border-collapse: collapse;
}
table thead {
background-color: #238afe;
}
table thead th {
color: white;
font-size: 16px;
font-weight: 700;
padding: 12px 16px;
white-space: nowrap;
}
table tbody tr {
color: #505050;
font-size: 16px;
}
table tbody tr:nth-child(odd) {
background-color: #238afe0d;
}
table td,
table th {
border: #e1e1e1 1px solid;
padding: 10px;
vertical-align: middle;
}
table td:nth-child(1) {
font-weight: 600;
}
@media (max-width: 640px) {
table {
display: block;
overflow-x: scroll;
}
}
.prose :where(ul) {
padding-left: 1.25em !important;
}
.prose :where(ul > li) {
padding-left: 1.25em !important;
}
.prose :where(ul > li)::before {
width: 0.4em;
height: 0.4em;
top: 0.675em;
}
}