-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
78 lines (66 loc) · 1.41 KB
/
index.css
File metadata and controls
78 lines (66 loc) · 1.41 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
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--dx7-teal: #00d4c1;
--dx7-ink: #111;
}
body {
margin: 0;
padding: 0;
background-color: #0a0a0a;
color: #ccc;
font-family: 'Inter', sans-serif;
overflow: hidden;
user-select: none;
-webkit-tap-highlight-color: transparent;
}
/* LCD Screen Effect */
.lcd-screen {
background-color: #1a2a22;
box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8), 0 0 10px rgba(126, 250, 180, 0.05);
}
.lcd-screen input {
color: #7efab4;
text-shadow: 0 0 8px rgba(126, 250, 180, 0.6);
}
/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
width: 6px;
height: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0.2);
}
.custom-scrollbar::-webkit-scrollbar-thumb {
background: #333;
border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
background: #444;
}
/* Range Input Styling */
input[type="range"] {
-webkit-appearance: none;
background: transparent;
}
input[type="range"]:focus {
outline: none;
}
input[type="range"]::-webkit-slider-runnable-track {
width: 100%;
height: 4px;
cursor: pointer;
background: #222;
border-radius: 2px;
}
input[type="range"]::-webkit-slider-thumb {
height: 16px;
width: 16px;
border-radius: 50%;
background: var(--dx7-teal);
cursor: pointer;
-webkit-appearance: none;
margin-top: -6px;
box-shadow: 0 0 10px rgba(0, 212, 193, 0.4);
}