-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobals.css
122 lines (106 loc) · 2.6 KB
/
globals.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
html,
body {
padding: 0;
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}
a {
color: inherit;
text-decoration: none;
}
* {
box-sizing: border-box;
}
/* @media (prefers-color-scheme: dark) {
html {
color-scheme: dark;
}
body {
color: white;
background: black;
}
} */
@font-face {
font-family: "Messapia";
src: url("./fonts/Messapia-Regular.woff2") format("woff2"),
url("./fonts/Messapia-Regular.woff") format("woff");
font-weight: normal;
font-style: normal;
font-display: block;
}
@font-face {
font-family: "Messapia";
src: url("./fonts/Messapia-Bold.woff2") format("woff2"),
url("./fonts/Messapia-Bold.woff") format("woff");
font-weight: bold;
font-style: normal;
font-display: block;
}
@font-face {
font-family: "GT America Expanded Regular Trial";
src: url("./fonts/GT-America-Expanded-Regular-Trial.woff2") format("woff2");
font-weight: 400;
font-style: normal;
font-display: block;
}
@font-face {
font-family: "GT America Expanded Medium Trial";
src: url("./fonts/GT-America-Expanded-Medium-Trial.woff2") format("woff2");
font-weight: 500;
font-style: normal;
font-display: block;
}
@font-face {
font-family: "GT America Expanded Bold Trial";
src: url("./fonts/GT-America-Expanded-Bold-Trial.woff2") format("woff2");
font-weight: normal;
font-style: bold;
font-display: block;
}
@font-face {
font-family: "GT America Mono Regular Trial";
src: url("./fonts/GT-America-Mono-Regular-Trial.woff2") format("woff2");
font-weight: 400;
font-style: normal;
font-display: block;
}
@font-face {
font-family: "GT America Mono Regular Italic Trial";
src: url("./fonts/GT-America-Mono-Regular-Italic-Trial.woff2") format("woff2");
font-weight: 400;
font-style: italic;
font-display: block;
}
@font-face {
font-family: "W95FA";
src: url("./fonts/w95fa.woff2") format("woff2"),
url("./fonts/w95fa.woff") format(woff);
font-weight: normal;
font-style: normal;
font-display: block;
}
@font-face {
font-family: "Self Modern";
src: url("./fonts/bretagne_self-modern_regular_web.woff2") format("woff2"),
url("./fonts/bretagne_self-modern_regular_web.woff") format(woff);
font-weight: normal;
font-style: normal;
font-display: block;
}
::-webkit-scrollbar {
-webkit-appearance: none;
width: 10px;
background-color: #ddd;
}
::-webkit-scrollbar-thumb {
background-color: black;
}
body {
scrollbar-color: black;
cursor: url("/rainbow-cursor.svg"), auto;
}
::selection {
background: #fff;
color: blue;
}