-
Notifications
You must be signed in to change notification settings - Fork 0
/
utility.css
72 lines (66 loc) · 1.16 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
.flex{
display: flex;
}
.border{
border: 2px solid black;
}
.justifyc{
justify-content: center;
}
.alignc{
align-items: center;
}
.invert{
filter: invert(1);
}
.bggray{
background-color: #121212;
color: white;
}
.rounded{
border-radius: 10px;
border: 1px solid black;
}
.m1{
margin: 5px;
}
.p1{
padding: 5px;
}
.lwidth{
max-width: 25vw;
flex-wrap: wrap;
}
/* Custom Scrollbar for Webkit Browsers (Chrome, Safari) */
::-webkit-scrollbar {
width: 12px;
}
/* Track */
::-webkit-scrollbar-track {
background: #1e1e1e; /* Dark background for the track */
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #888; /* Gray color for the thumb */
border-radius: 10px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #555; /* Slightly darker gray on hover */
}
/* Handle on active */
::-webkit-scrollbar-thumb:active {
background: #444; /* Even darker gray when active */
}
/* Firefox scrollbar styling */
html {
scrollbar-width: thin;
scrollbar-color: #4d4d4d #1e1e1e;
}
/* Edge, IE scrollbar styling */
body {
-ms-overflow-style: -ms-autohiding-scrollbar;
}
.cursorp{
cursor: pointer;
}