-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.css
More file actions
72 lines (64 loc) · 1.32 KB
/
Copy pathcss.css
File metadata and controls
72 lines (64 loc) · 1.32 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
66
67
68
69
70
71
72
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');
body {
background: linear-gradient(135deg, #141e30, #243b55);
color: #ffffff;
font-family: 'Poppins', sans-serif;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.countdown-container {
background: rgba(255, 255, 255, 0.1);
border-radius: 20px;
padding: 40px 60px;
box-shadow: 0 8px 30px rgba(0,0,0,0.5);
text-align: center;
max-width: 450px;
width: 90%;
}
.countdown-title {
font-size: 2.5rem;
margin-bottom: 30px;
letter-spacing: 3px;
color: #f0a500;
text-transform: uppercase;
}
.time-sections {
display: flex;
justify-content: space-between;
gap: 20px;
}
.time-section {
background: rgba(0,0,0,0.3);
border-radius: 15px;
padding: 20px 15px;
flex: 1;
}
.time-number {
font-size: 3.5rem;
font-weight: 700;
color: #f0a500;
margin-bottom: 8px;
user-select: none;
}
.time-label {
font-size: 1rem;
color: #d1d1d1;
letter-spacing: 1.5px;
text-transform: uppercase;
user-select: none;
}
@media (max-width: 400px) {
.countdown-title {
font-size: 2rem;
margin-bottom: 20px;
}
.time-number {
font-size: 2.8rem;
}
.time-label {
font-size: 0.9rem;
}
}