-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.css
49 lines (43 loc) · 825 Bytes
/
db.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
43
44
45
46
47
48
49
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f0f0f0;
margin: 0;
}
.container {
text-align: center;
}
.message {
margin-bottom: 30px;
}
h1 {
font-size: 24px;
color: #333;
letter-spacing: 1px;
animation: fadeInUp 1s ease forwards;
}
.rocket {
position: absolute;
bottom: 20px;
left: -100px;
animation: rocketLaunch 4s linear forwards;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes rocketLaunch {
to {
left: calc(100% + 100px);
transform: rotate(45deg);
}
}