-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlock.css
More file actions
65 lines (64 loc) · 2.02 KB
/
lock.css
File metadata and controls
65 lines (64 loc) · 2.02 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
@keyframes pulseGlow {
from {
box-shadow: 0 0 5px #ffaa00, 0 0 10px #ffd700;
}
to {
box-shadow: 0 0 15px #ffaa00, 0 0 20px #ffd700;
}
}
.maintenance-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.6);
display: none;
justify-content: center;
align-items: center;
z-index: 1000;
user-select: none;
text-align: center;
}
.maintenance-overlay.active {
display: flex;
}
.lockout-active {
filter: none;
pointer-events: none;
user-select: none;
transition: filter 0.5s ease-in-out;
}
.lockout-message {
background-color: #4a3e21;
color: #ffd700; /* Gold text#fff8e1; */
border: 3px solid #ff9800;
padding: 30px;
border-radius: 8px;
font-weight: bold;
text-align: center;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
font-size: 1.3em;
line-height: 1.4;
animation: pulseGlow 1.5s infinite alternate; /* The missing glow animation! */
max-width: 90%;
font-family: monospace; /* Added for consistency, adjust if needed */
}
.lockout-message h2 {
color: #ffc107;
margin: 0 0 10px 0;
text-shadow: 0 0 8px #ffd700; /* Added a subtle text shadow */
}
.lockout-message .countdown {
display: block;
margin-top: 10px;
font-size: 1.5em;
/*color: #ffaa00; /* Orange highlight for timer */
color: #ff9800;
text-shadow: 0 0 5px #ffaa00;
}
.collecting-in-progress {
opacity: 0.5;
pointer-events: none;
cursor: default;
}