-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
68 lines (54 loc) · 1.33 KB
/
styles.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
/*** Font styling***/
@font-face {
font-family: CarmenSans-SemiBold;
src: url("assets/fonts/CarmenSans-SemiBold.otf") format("opentype");
}
@font-face {
font-family: CarmenSans-ExtraBold;
src: url("assets/fonts/CarmenSans-ExtraBold.otf") format("opentype");
}
body, p {
font-family: "Poppins", sans-serif!important;
}
h1, h2, h3 {
font-family: "CarmenSans-ExtraBold", sans-serif!important;
}
h4, h5 ,h6 {
font-family: "CarmenSans-SemiBold", sans-serif!important;
}
.text-off-white {
color:#EEE!important;
}
.text-dimmed {
color: #E0E0E0!important;
}
/*** Scrollbar ***/
::-webkit-scrollbar {
height: 10px;
width: 10px;
}
::-webkit-scrollbar-track {
background: #212529;
}
::-webkit-scrollbar-thumb {
background: #424242;
border-radius: 3px;
box-shadow:
inset 2px 2px 2px #ffffff26,
inset -2px -2px 2px #00000040;
}
::-webkit-scrollbar-thumb:hover {
background: #616161;
border-radius: 3px;
box-shadow:
inset 2px 2px 2px #ffffff26,
inset -2px -2px 2px #00000040;
}
/*** Gradients ***/
.mission-gradient {
background: radial-gradient(circle farthest-side at bottom center, #198754 0%, #212529 100%);
}
.mission-gradient-light {
background: radial-gradient(circle farthest-side at bottom center, rgba(255,255,255,0.2) 0%, rgba(99, 99, 99, 0.38) 100%);
box-shadow: 0 12px 50px #00000080;
}