-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathindex.css
47 lines (40 loc) · 1.15 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
@font-face {
font-family: 'Railway';
src: url('/src/pages/fonts/Raleway-VariableFont_wght.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: white;
}
* {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif !important;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}
body {
overflow: auto; /* show scrollbar when needed */
}
body::-webkit-scrollbar {
width: 10px; /* set scrollbar width */
}
body::-webkit-scrollbar-track {
background-color: transparent; /* set track color */
}
body::-webkit-scrollbar-thumb {
background-color: #8888884d; /* set thumb color */
border-radius: 5px; /* round corners */
}
body::-webkit-scrollbar-thumb:hover {
background-color: #88888883; /* set thumb color */
}