-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
42 lines (38 loc) · 803 Bytes
/
style.css
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
body {
font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background: linear-gradient(135deg, #6dd5ed, #2193b0);
color: white;
}
#countdown {
background: rgba(0, 0, 0, 0.7);
padding: 40px 60px;
border-radius: 15px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
text-align: center;
}
#timer {
display: flex;
gap: 10px;
font-size: 3rem;
letter-spacing: 3px;
}
.timer-unit {
font-size: 2rem;
/* text-transform: uppercase; */
letter-spacing: 2px;
margin-top: 10px;
display: block;
}
@media (max-width: 600px) {
#timer {
font-size: 2rem;
}
.timer-unit {
font-size: 1rem;
}
}