-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
57 lines (48 loc) · 1.27 KB
/
styles.css
File metadata and controls
57 lines (48 loc) · 1.27 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
.status-indicator {
transition: all 0.4s ease;
}
.status-indicator.disarmed {
background: #10b981;
box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}
.status-indicator.armed {
background: #ef4444;
box-shadow: 0 0 20px #ef4444, 0 0 40px rgba(239, 68, 68, 0.4);
animation: alert-pulse 0.6s infinite alternate;
}
@keyframes alert-pulse {
from { transform: scale(1); filter: brightness(1); }
to { transform: scale(1.1); filter: brightness(1.4); }
}
.btn-industrial {
position: relative;
transition: all 0.1s;
border-bottom-width: 4px;
text-transform: uppercase;
letter-spacing: 0.1em;
font-weight: 900;
opacity: 0.4;
filter: grayscale(0.8);
}
.btn-industrial:active {
border-bottom-width: 0;
transform: translateY(4px);
}
.btn-industrial.active {
opacity: 1;
filter: grayscale(0);
border-bottom-width: 4px;
box-shadow: 0 0 20px rgba(255,255,255,0.1);
}
.channel-card {
background: #0f172a;
box-shadow: 0 10px 30px rgba(0,0,0,0.5);
border: 1px solid #1e293b;
}
.channel-card:hover {
border-color: #334155;
}
/* Custom Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #334155; border-radius: 10px; }