-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
55 lines (47 loc) · 932 Bytes
/
style.css
File metadata and controls
55 lines (47 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
48
49
50
51
52
53
54
55
body {
background: #1e1e2f;
color: white;
font-family: Arial, sans-serif;
text-align: center;
padding-top: 40px;
position: relative;
}
#countdown {
font-size: 48px;
font-weight: bold;
padding: 10px 20px;
border-radius: 10px;
display: inline-block;
margin-top: 15px;
}
/* app colors */
.safe { background: #2ecc71; }
.warning { background: #f1c40f; }
.danger { background: #e74c3c; }
/* bell button */
.bell {
position: absolute;
top: 10px;
right: 15px;
font-size: 24px;
cursor: pointer;
transition: transform 0.2s ease;
}
.bell.on {
animation: ring 1s infinite;
}
@keyframes ring {
0% { transform: rotate(0); }
25% { transform: rotate(15deg); }
50% { transform: rotate(-15deg); }
75% { transform: rotate(10deg); }
100% { transform: rotate(0); }
}
/* sound test button */
#soundTest {
position: absolute;
bottom: 10px;
left: 15px;
font-size: 22px;
cursor: pointer;
}