-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (47 loc) · 2.25 KB
/
style.css
File metadata and controls
56 lines (47 loc) · 2.25 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
/* --- Glassmorphism --- */
.glass-panel {
background: rgba(15, 23, 42, 0.65);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}
/* --- Visibility API Blur --- */
.security-blur > *:not(#securityOverlay) {
filter: blur(16px) brightness(0.3) grayscale(80%);
pointer-events: none;
user-select: none;
transition: all 0.3s ease-in-out;
}
#securityOverlay {
z-index: 50;
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
}
/* --- Ash Disintegration --- */
.secret-text-container { position: relative; transform-origin: top left; }
.disintegrate { animation: ashFade 2s forwards cubic-bezier(0.4, 0, 0.2, 1); }
@keyframes ashFade {
0% { opacity: 1; filter: blur(0px) grayscale(0%); transform: translateY(0) scale(1); }
40% { opacity: 0.8; filter: blur(3px) grayscale(50%); color: #f97316; transform: translateY(-5px) scale(0.98); }
100% { opacity: 0; filter: blur(15px) grayscale(100%); transform: translateY(-30px) scale(0.9); color: #475569; }
}
#burnRing { transition: stroke-dashoffset 1s linear, stroke 0.3s ease; }
/* --- THE GLITCH LOCKOUT ANIMATION --- */
.glitch-active {
animation: glitch-skew 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
background-color: #7f1d1d !important;
}
.glitch-active * { color: #fca5a5 !important; }
@keyframes glitch-skew {
0% { transform: skew(0deg); filter: drop-shadow(-2px 0 0 red) drop-shadow(2px 0 0 blue); }
20% { transform: skew(-10deg); filter: drop-shadow(-5px 0 0 red) drop-shadow(5px 0 0 blue); }
40% { transform: skew(10deg); filter: drop-shadow(2px 0 0 red) drop-shadow(-2px 0 0 blue); }
60% { transform: skew(-5deg); filter: drop-shadow(-2px 0 0 red) drop-shadow(2px 0 0 blue); }
80% { transform: skew(5deg); filter: drop-shadow(5px 0 0 red) drop-shadow(-5px 0 0 blue); }
100% { transform: skew(0deg); filter: drop-shadow(0 0 0 red) drop-shadow(0 0 0 blue); }
}
/* --- Custom Scrollbars --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: rgba(15, 23, 42, 0.5); border-radius: 8px; }
::-webkit-scrollbar-thumb { background: rgba(51, 65, 85, 0.8); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: rgba(71, 85, 105, 1); }