-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutility.css
More file actions
104 lines (80 loc) · 1.3 KB
/
Copy pathutility.css
File metadata and controls
104 lines (80 loc) · 1.3 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
.border-color {
border: 2px solid red;
}
.justify-center {
justify-content: center;
}
.flex {
display: flex;
}
.items-center {
align-items: center;
}
.grey {
background-color: #121212
}
.black {
background-color: #000000
}
.white {
color: #fff;
}
.grey-text {
color: #9c9c9c;
}
.border-radius {
border-radius: 10px;
}
.img-border {
border-radius: 15px;
}
.invert {
filter: invert(1);
}
.margin {
margin: 8px;
}
.m-top {
margin-top: 3px;
}
.padding {
padding: 25px;
}
.img-width {
width: 22px;
}
.gradient {
background: linear-gradient(180deg, #1a1a1a, #121212);
}
.img-size {
width: 100%;
object-fit: contain;
}
.card-title {
font-size: 18px;
}
.card-descrip {
font-size: 14px;
font-weight: 400;
}
.a-signbtn {
text-decoration: none;
color: #c1c1c1;
}
.a-logbtn {
text-decoration: none;
color: #000;
}
/* For Webkit browsers (e.g., Chrome, Safari) */
::-webkit-scrollbar {
width: 12px;
}
::-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 */
}
/* For Firefox */
scrollbar-color: #333 #222; /* Dark color for the thumb and track in Firefox */