Create static/custom.css
Browse files- static/custom.css +38 -0
static/custom.css
ADDED
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.hover-scale {
|
2 |
+
transition: transform 0.2s ease-in-out;
|
3 |
+
}
|
4 |
+
|
5 |
+
.hover-scale:hover {
|
6 |
+
transform: scale(1.02);
|
7 |
+
}
|
8 |
+
|
9 |
+
.custom-scrollbar::-webkit-scrollbar {
|
10 |
+
width: 6px;
|
11 |
+
height: 6px;
|
12 |
+
}
|
13 |
+
|
14 |
+
.custom-scrollbar::-webkit-scrollbar-track {
|
15 |
+
background: #f1f1f1;
|
16 |
+
}
|
17 |
+
|
18 |
+
.custom-scrollbar::-webkit-scrollbar-thumb {
|
19 |
+
background: #888;
|
20 |
+
border-radius: 3px;
|
21 |
+
}
|
22 |
+
|
23 |
+
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
|
24 |
+
background: #555;
|
25 |
+
}
|
26 |
+
|
27 |
+
/* Dark mode scrollbar */
|
28 |
+
.dark .custom-scrollbar::-webkit-scrollbar-track {
|
29 |
+
background: #1f2937;
|
30 |
+
}
|
31 |
+
|
32 |
+
.dark .custom-scrollbar::-webkit-scrollbar-thumb {
|
33 |
+
background: #4b5563;
|
34 |
+
}
|
35 |
+
|
36 |
+
.dark .custom-scrollbar::-webkit-scrollbar-thumb:hover {
|
37 |
+
background: #6b7280;
|
38 |
+
}
|