-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
56 lines (45 loc) · 1.03 KB
/
main.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
@font-face {
font-family: 'Roboto';
src: url("fonts/Roboto-Black.ttf") format("truetype");
font-weight: 500;
}
@font-face {
font-family: 'Roboto';
src: url("fonts/Roboto-Bold.ttf") format("truetype");
font-weight: 400;
}
@font-face {
font-family: 'Roboto';
src: url("fonts/Roboto-Regular.ttf") format("truetype");
font-weight: 300;
}
@font-face {
font-family: 'Roboto';
src: url("fonts/Roboto-Light.ttf") format("truetype");
font-weight: 200;
}
@font-face {
font-family: 'Roboto';
src: url("fonts/Roboto-Thin.ttf") format("truetype");
font-weight: 100;
}
* {
box-sizing: border-box;
}
html, body {
height: 100%;
background-color: #121212;
overflow: scroll;
}
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
background-color: #212121;
}
::-webkit-scrollbar {
width: 1px;
height: 1px;
background-color: #444444;
}
::-webkit-scrollbar-thumb {
background-color: #444444;
}