-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathApp.scss
More file actions
62 lines (51 loc) · 1.19 KB
/
App.scss
File metadata and controls
62 lines (51 loc) · 1.19 KB
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
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");
html,
body {
overflow: none;
margin: 0;
padding: 0;
}
body {
font-family: "Montserrat", sans-serif;
color: white;
}
*:focus,
button:focus {
outline: none !important;
}
a {
text-decoration: none !important;
&,
&:visited,
&:hover,
&:active {
color: inherit;
}
}
// for firefox
::-moz-selection {
color: white;
background: #f3c583;
}
::selection {
color: white;
background: #f3c583;
}
::-webkit-scrollbar {
height: 0px; // Height of horizontal scrollbar
width: 10px; // Width of vertical scrollbar
}
::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px black;
}
::-webkit-scrollbar-thumb {
background: var(--orange);
border-radius: 10px;
}
.trail { /* className for the trail elements (utils/mousetrail.js) */
position: absolute;
height: 10px; width: 10px;
border-radius: 6px;
background: rgb(255, 123, 0);
pointer-events:none; //Allows user to click through the mouse trail: https://stackoverflow.com/questions/64930959/how-to-make-a-mouse-trail-with-css-js-so-that-elements-are-still-clickable
}