-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutility.css
More file actions
59 lines (49 loc) · 872 Bytes
/
Copy pathutility.css
File metadata and controls
59 lines (49 loc) · 872 Bytes
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
.flex{
display: flex;
}
.justify-centre{
justify-content: center;
}
.items-centre{
align-items: center;
}
.bg-black{
background-color: #000000;
color: #ffffff;
}
.bg-grey{
background-color: #121212;
color: #ffffff;
}
.invert{
filter: invert(1);
}
.rounded{
border-radius: 7px;
}
.m-1{
margin: 5px;
}
.p-1{
padding: 10px;
}
/* For selection in Website */
::selection{
background-color: #1ed760;
}
/* For Scrolling */
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-thumb {
background-color: #333; /* Dark color for the thumb */
border-radius: 6px;
}
::-webkit-scrollbar-track {
background-color: #222; /* Dark color for the track */
}
input[type="range"] {
width: 75px;
height: 5px;
accent-color: #333;
}