-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutility.css
49 lines (46 loc) · 961 Bytes
/
utility.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
.border{
border:2px solid red;
margin:5px;
}
.flex{
display:flex;
}
.justify-center{
justify-content:center;
}
.items-center{
align-items:center;
}
.bg-black{
background-color: black;
color:white;
}
.bg-grey{
background-color: #121212;
}
.rounded{
border-radius:7px;
}
.m-2{
margin:5px;
}
.p-1{
padding:10px;
}
/* For WebKit browsers (Chrome, Safari, etc.) */
::-webkit-scrollbar {
width: 12px; /* Width of the scrollbar */
}
::-webkit-scrollbar-track {
background: #2e2e2e; /* Dark background for the scrollbar track */
}
::-webkit-scrollbar-thumb {
background-color: #1DB954; /* Green color for the scrollbar thumb */
border-radius: 10px; /* Rounded corners for the scrollbar thumb */
border: 3px solid #2e2e2e; /* Adds space around the thumb */
}
/* For Firefox */
html {
scrollbar-width: thin; /* Thin scrollbar */
scrollbar-color: #1DB954 #2e2e2e; /* Thumb color, Track color */
}