-
Notifications
You must be signed in to change notification settings - Fork 16
/
global.css
76 lines (62 loc) · 1.25 KB
/
global.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
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
background: white;
}
::-webkit-scrollbar-thumb {
background-color: #eeee;
border-radius: 10px;
border: none;
}
#sidebar *,
html {
scrollbar-width: thin;
scrollbar-color: #eeee white;
scrollbar-gutter: stable;
}
a:has(> code) {
border-bottom: none !important;
}
a > code {
cursor: pointer;
border-bottom: #0c0c15 1px solid !important;
}
a > code:hover {
border-bottom: #0c0c15 2px solid !important;
}
#content-area > div.leading-6.mt-14 > footer > div.sm\:flex > a {
display: none;
}
@font-face {
font-family: 'GT Standard Mono';
src: url('/fonts/GT-Standard-Mono-VF-Beta-V1.ttf') format('truetype');
font-weight: 400 450 700; /* Normal to Bold */
font-style: normal;
}
@font-face {
font-family: 'GT Standard';
src: url('/fonts/GT-Standard-VF-Beta-V4.ttf') format('truetype');
font-weight: 300 400 450 500 700 900; /* Normal to Bold */
font-style: normal;
}
.gt-standard {
font-family: 'GT Standard', sans-serif;
}
.gt-standard-mono {
font-family: 'GT Standard Mono', monospace;
}
* {
font-family: 'GT Standard', sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'GT Standard Mono', monospace;
}
#sidebar > div > ul > li:nth-child(1) {
display: none;
}