-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
75 lines (62 loc) · 1.46 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
@tailwind base;
@tailwind components;
@tailwind utilities;
/* Calibre */
@font-face {
font-family: "Calibre";
src: url("./src/assets/fonts/calibre/CalibreRegular.otf") format("opentype");
font-weight: 400;
}
@font-face {
font-family: "Calibre";
src: url("./src/assets/fonts/calibre/CalibreSemibold.otf") format("opentype");
font-weight: 600;
}
@font-face {
font-family: "Calibre";
src: url("./src/assets/fonts/calibre/CalibreBold.otf") format("opentype");
font-weight: 700;
}
/* SF Mono */
@font-face {
font-family: "SFMono";
src: url("./src/assets/fonts/sfmono/SFMono-Regular.otf") format("opentype");
font-weight: 400;
}
@font-face {
font-family: "SFMono";
src: url("./src/assets/fonts/sfmono/SFMono-Semibold.otf") format("opentype");
font-weight: 600;
}
@font-face {
font-family: "SFMono";
src: url("./src/assets/fonts/sfmono/SFMono-Bold.otf") format("opentype");
font-weight: 700;
}
/* Chawp */
@font-face {
font-family: "Chawp";
src: url("./src/assets/fonts/chawp.otf") format("opentype");
font-weight: 400;
}
html, body, #root {
width: 100%;
height: 100%;
}
/* Scrollbar */
::-webkit-scrollbar {
display: none;
}
@media (min-width: 768px) {
::-webkit-scrollbar {
display: block;
width: 10px;
}
::-webkit-scrollbar-track {
background: #1a120b;
}
::-webkit-scrollbar-thumb {
background: #0d0803;
border-radius: 50px;
}
}