-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
102 lines (92 loc) · 2.23 KB
/
Copy pathindex.css
File metadata and controls
102 lines (92 loc) · 2.23 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
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
--background: 240 10% 3.9%;
--foreground: 0 0% 98%;
}
}
body {
background-color: #09090b;
color: #fafafa;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* Utilities */
.checkerboard {
background-image:
linear-gradient(45deg, #18181b 25%, transparent 25%),
linear-gradient(-45deg, #18181b 25%, transparent 25%),
linear-gradient(45deg, transparent 75%, #18181b 75%),
linear-gradient(-45deg, transparent 75%, #18181b 75%);
background-size: 20px 20px;
background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}
.bg-grid-pattern {
background-image:
linear-gradient(to right, #27272a 1px, transparent 1px),
linear-gradient(to bottom, #27272a 1px, transparent 1px);
background-size: 24px 24px;
}
/* Custom Scrollbar - Thin & Dark */
.custom-scrollbar::-webkit-scrollbar {
width: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
background: #3f3f46;
border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
background: #52525b;
}
/* Range Slider Styling */
.custom-range {
-webkit-appearance: none;
background: transparent;
height: 20px; /* Increase hit area */
}
/* Thumb */
.custom-range::-webkit-slider-thumb {
-webkit-appearance: none;
height: 14px;
width: 14px;
border-radius: 50%;
background: #ffffff;
margin-top: -5px;
box-shadow: 0 0 0 2px #09090b, 0 0 10px rgba(255, 255, 255, 0.2);
cursor: grab;
transition: transform 0.1s, box-shadow 0.2s;
}
.custom-range::-webkit-slider-thumb:active {
cursor: grabbing;
transform: scale(1.1);
box-shadow: 0 0 0 4px #09090b, 0 0 15px rgba(255, 255, 255, 0.4);
}
.custom-range::-moz-range-thumb {
height: 14px;
width: 14px;
border: none;
border-radius: 50%;
background: #ffffff;
cursor: grab;
box-shadow: 0 0 0 2px #09090b;
}
/* Track */
.custom-range::-webkit-slider-runnable-track {
width: 100%;
height: 4px;
cursor: pointer;
background: #27272a;
border-radius: 999px;
}
.custom-range::-moz-range-track {
width: 100%;
height: 4px;
cursor: pointer;
background: #27272a;
border-radius: 999px;
}