-
Notifications
You must be signed in to change notification settings - Fork 668
Expand file tree
/
Copy pathtables.css
More file actions
73 lines (57 loc) · 1.21 KB
/
tables.css
File metadata and controls
73 lines (57 loc) · 1.21 KB
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
/* Table styles */
/* Release list table */
.release-list th,
.release-list td {
padding: 2px 1em 2px 0;
}
.release-list th {
border-bottom: 1px solid #d6d3d1; /* stone-300 */
}
.dark .release-list th {
border-bottom-color: #44403c; /* stone-700 */
}
.release-list td {
border-bottom: 1px solid #e7e5e4; /* stone-200 */
}
.dark .release-list td {
border-bottom-color: #44403c; /* stone-700 */
}
.release-list tr:last-child td {
border-bottom: none;
}
/* Sponsor logo table */
.sponsor-table {
width: 100%;
}
.sponsor-table tr {
border-bottom: 1px solid #d6d3d1; /* stone-300 */
}
.dark .sponsor-table tr {
border-bottom-color: #44403c; /* stone-700 */
}
.sponsor-table tr:last-child {
border-bottom: none;
}
.sponsor-table td {
color: #44403c; /* stone-700 */
padding: 1.25rem 1rem !important;
}
.dark .sponsor-table td {
color: #d6d3d1; /* stone-300 */
}
.sponsor-table .sponsor-logo {
background-color: white;
border-radius: 0.25rem;
padding: 0.5rem;
}
.sponsor-table .sponsor-logo img {
width: 300px;
height: auto !important;
}
.sponsor-table a {
text-decoration: underline;
color: var(--color-text-link);
}
.sponsor-table a:hover {
color: var(--color-text-link-hovered);
}