-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
84 lines (72 loc) Β· 1.59 KB
/
Copy pathindex.css
File metadata and controls
84 lines (72 loc) Β· 1.59 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
/* Base styles - Tailwind is loaded via CDN */
*, *::before, *::after {
box-sizing: border-box;
}
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow: hidden;
background-color: #050505;
font-family: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Monaco, Consolas, monospace;
}
#root {
width: 100%;
height: 100%;
}
canvas {
display: block;
width: 100%;
height: 100%;
}
/* Loading animation enhancement */
@keyframes pulse-glow {
0%, 100% { opacity: 0.4; }
50% { opacity: 1; }
}
.animate-pulse-glow {
animation: pulse-glow 1.5s ease-in-out infinite;
}
/* Subtle scanline effect for cyberpunk feel */
.scanlines::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
pointer-events: none;
background: repeating-linear-gradient(
0deg,
transparent,
transparent 2px,
rgba(0, 0, 0, 0.03) 2px,
rgba(0, 0, 0, 0.03) 4px
);
}
/* Custom scrollbar - elegant and thin */
.custom-scrollbar::-webkit-scrollbar {
width: 4px;
height: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
background: rgba(39, 39, 42, 0.3);
border-radius: 2px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
background: rgba(161, 161, 170, 0.3);
border-radius: 2px;
transition: background 0.2s ease;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
background: rgba(251, 191, 36, 0.5);
}
.custom-scrollbar::-webkit-scrollbar-thumb:active {
background: rgba(251, 191, 36, 0.7);
}
/* Firefox scrollbar */
.custom-scrollbar {
scrollbar-width: thin;
scrollbar-color: rgba(161, 161, 170, 0.3) rgba(39, 39, 42, 0.3);
}