-
Notifications
You must be signed in to change notification settings - Fork 0
/
utility.css
74 lines (69 loc) · 1.03 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
73
74
.border{
border:2px solid black;
margin:3px;
}
.flex{
display: flex;
}
.justify-center{
justify-content: center;
}
.item-center{
align-items: center;
}
.bg-black{
background-color: black;
color:white;
}
.invert{
filter: invert(1);
}
.bg-grey{
background-color: #121212;
}
.rounded{
border-radius: 7px;
}
.m-1{
margin: 5px;
}
.p-1{
padding: 10px ;
}
.m-2{
margin: 10px;
}
.logo{
width: 15px;
gap: 15px;
font-weight: bold;
padding-left: 5px;
padding-right: 12px;
font-size: 13px;
}
::-webkit-scrollbar {
width: 12px;
}
::-webkit-scrollbar-thumb {
background-color: #333;
border-radius: 6px;
}
::-webkit-scrollbar-track {
background-color: #222;
}
/* For Firefox */
* {
scrollbar-width: thin;
scrollbar-color: #333 #222;
}
/* For IE/Edge */
*::-ms-scrollbar {
width: 12px;
}
*::-ms-scrollbar-thumb {
background-color: #333;
border-radius: 6px;
}
*::-ms-scrollbar-track {
background-color: #222;
}