-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathROCKET.css
More file actions
135 lines (118 loc) · 2.32 KB
/
ROCKET.css
File metadata and controls
135 lines (118 loc) · 2.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.container {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
padding: 60px 40px;
border-radius: 20px;
text-align: center;
color: #fff;
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
border: 1px solid rgba(255, 255, 255, 0.18);
max-width: 600px;
width: 100%;
}
h1 {
font-size: 3rem;
margin-bottom: 10px;
font-weight: bold;
letter-spacing: 2px;
animation: glow 2s ease-in-out infinite;
}
.subtitle {
font-size: 1.2rem;
margin-bottom: 40px;
opacity: 0.9;
font-weight: 300;
}
.countdown {
display: flex;
justify-content: center;
align-items: center;
gap: 15px;
margin: 40px 0;
flex-wrap: wrap;
}
.time-unit {
display: flex;
flex-direction: column;
align-items: center;
}
.time-value {
font-size: 3.5rem;
font-weight: bold;
line-height: 1;
color: #ffd700;
text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
min-width: 100px;
}
.time-label {
font-size: 0.9rem;
margin-top: 10px;
opacity: 0.8;
font-weight: 500;
letter-spacing: 1px;
text-transform: uppercase;
}
.separator {
font-size: 2.5rem;
font-weight: bold;
color: #ffd700;
margin: 0 5px;
opacity: 0.7;
}
.launch-message {
font-size: 2.5rem;
color: #30ffb4;
font-weight: bold;
margin-top: 30px;
animation: pulse 1s ease-in-out infinite;
}
@keyframes glow {
0%, 100% {
text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
50% {
text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}
}
@keyframes pulse {
0%, 100% {
opacity: 1;
transform: scale(1);
}
50% {
opacity: 0.8;
transform: scale(1.05);
}
}
@media (max-width: 768px) {
.container {
padding: 40px 20px;
}
h1 {
font-size: 2rem;
}
.time-value {
font-size: 2rem;
min-width: auto;
}
.separator {
font-size: 1.5rem;
margin: 0 3px;
}
.launch-message {
font-size: 1.5rem;
}
}