-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathultility.css
67 lines (61 loc) · 941 Bytes
/
ultility.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
.border{
border: 1px solid red;
margin: 3px;
}
.flex{
display: flex;
}
.justify-content{
justify-content: center;
}
.align-item{
align-items: center;
}
.bg-black{
background-color: #121212;
color: white;
}
.invert{
filter: invert(1);
}
.rounded{
border-radius:8px ;
}
.white{
color: rgb(255, 255, 255);
opacity: 0.5;
}
.p1{
padding: 18px;
}
.p2{
padding: 10px;
}
.m1{
margin: 5px;
}
.pointer{
cursor: pointer;
}
.width{
width: 25px;
}
.font-style{
font-family: 'Roboto', sans-serif;;
font-size: 16px;
font-weight: 700;
}
::-webkit-scrollbar {
width: 12px;
}
::-webkit-scrollbar-track {
background: #1f1f1f;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #555;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #777;
}