-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
47 lines (45 loc) · 932 Bytes
/
style.css
File metadata and controls
47 lines (45 loc) · 932 Bytes
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
#time-counter-overlay {
position: fixed;
top: 5px;
left: 5px;
z-index: 999999;
background: rgba(0,0,0,1);
color: #fff;
font-size: 13px;
font-family: monospace;
padding: 4px 8px;
border-radius: 6px;
pointer-events: none;
}
/* Warning below the counter */
#time-warning-overlay {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100vw; /* half viewport width */
height: 100vh; /* half viewport height */
z-index: 999998;
background: rgba(255,0,0,0.95);
color: #fff;
font-size: 36px;
font-family: monospace;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
padding: 20px;
border-radius: 12px;
pointer-events: auto;
}
#time-reset-btn {
position: fixed;
top: 5px;
right: 8px;
z-index: 1000001;
color: #fff;
font-size: 14px;
font-family: monospace;
cursor: pointer;
user-select: none;
}