-
Notifications
You must be signed in to change notification settings - Fork 0
/
utilities.css
117 lines (94 loc) · 1.92 KB
/
utilities.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
@import url('https://fonts.googleapis.com/css2?family=Shadows+Into+Light&display=swap');
.border {
border: 2px solid red;
margin: 3px;
}
.flex {
display: flex;
}
.justify-center {
justify-content: center;
}
.items-center {
align-items: center;
}
.bg-black {
background-color: black;
color: white;
}
.invert {
filter: invert(1);
}
.bg-grey {
background-color: #121212;
}
.rounded {
border-radius: 7px;
}
.p-1 {
padding: 10px;
}
.p-2 {
padding-left: 8px;
}
.slogo {
/* padding-top: 6px; */
/* display: flex;
margin: auto; */
/* for aligning at center */
justify-content: left;
width: fit-content;
height: 8vh;
}
/* Style the scrollbar */
::-webkit-scrollbar {
width: 12px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background-color: #27785e;
/* background-color: #ffc800; */
}
/* Handle */
::-webkit-scrollbar-thumb {
background-color: #222;
}
/* Track */
::-webkit-scrollbar-track {
background: #27785e;
}
/* Handle on Firefox */
* {
scrollbar-color: #27785e #222;
}
/* Track on Firefox */
*::-webkit-scrollbar-track {
background: #222;
}
.slider {
width: 100px;
-webkit-appearance: none;
height: 4px;
border-radius: 4px;
/* margin-bottom: 15px; */
background-color: rgb(0, 0, 0);
}
.slider::-webkit-slider-thumb {
-webkit-appearance: none;
width: 15px;
height: 15px;
border-radius: 10px;
background-color: hsl(30, 100%, 50%);
overflow: visible;
cursor: pointer;
}
/* .slider{
background: linear-gradient(to right, #82CFD0 0%, #82CFD0 50%, #fff 50%, #fff 100%);
border: solid 1px #82CFD0;
border-radius: 8px;
height: 7px;
width: 356px;
outline: none;
transition: background 450ms ease-in;
-webkit-appearance: none;
} */