-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (82 loc) · 2.16 KB
/
style.css
File metadata and controls
97 lines (82 loc) · 2.16 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/* Hide the sidebar's internal scrollbar and reserved gutter so no vertical
"slider" line shows along the sidebar edge. Scrolling still works via
wheel, touch, and keyboard. */
#sidebar-content {
scrollbar-gutter: auto;
scrollbar-width: none;
}
#sidebar-content::-webkit-scrollbar {
display: none;
}
#footer {
width: 100%;
}
#footer > div {
max-width: none !important;
width: 100%;
padding-left: 2rem !important;
padding-right: 2rem !important;
}
#footer > div > div:first-child {
display: grid !important;
grid-template-columns: minmax(160px, 1fr) minmax(460px, 2.5fr) auto;
align-items: start;
column-gap: clamp(2rem, 5vw, 5rem);
}
#footer > div > div:first-child > div:nth-child(2) {
display: grid !important;
grid-template-columns: repeat(3, minmax(140px, 1fr)) !important;
column-gap: clamp(1.5rem, 4vw, 4rem) !important;
row-gap: 2rem !important;
}
#footer > div > div:first-child > div:nth-child(2) > div {
align-items: flex-start !important;
min-width: 0;
white-space: normal !important;
}
#footer > div > div:first-child > div:nth-child(2) a {
max-width: none !important;
overflow: visible !important;
text-overflow: clip !important;
white-space: normal !important;
}
#footer > div > div:last-child {
display: flex !important;
align-items: center;
justify-content: space-between;
}
#footer [data-testid^="mode-switch-"] {
flex: 0 0 auto;
width: 1.75rem;
height: 1.75rem;
}
#footer [data-testid="mode-switch-dark"] {
color: rgb(75 85 99) !important;
}
.dark #footer [data-testid="mode-switch-dark"] {
color: rgb(209 213 219) !important;
}
@media (min-width: 1024px) {
#footer {
margin-left: 20.7rem;
width: calc(100% - 20.7rem);
}
}
@media (max-width: 900px) {
#footer > div {
padding-left: 1.5rem !important;
padding-right: 1.5rem !important;
}
#footer > div > div:first-child {
grid-template-columns: 1fr;
row-gap: 2rem;
}
#footer > div > div:first-child > div:nth-child(2) {
grid-template-columns: repeat(2, minmax(140px, 1fr)) !important;
}
}
@media (max-width: 560px) {
#footer > div > div:first-child > div:nth-child(2) {
grid-template-columns: 1fr !important;
}
}