-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
74 lines (65 loc) · 1.61 KB
/
Copy pathstyle.css
File metadata and controls
74 lines (65 loc) · 1.61 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
/* Basic Page Styling */
body {
font-family: 'Arial', sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f1f1f1;
margin: 0;
}
.container {
text-align: center;
background-color: #fff;
padding: 30px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* Confetti Animation */
.confetti {
position: absolute;
top: 0;
width: 100%;
height: 100%;
background: url('https://cdn.pixabay.com/photo/2017/08/30/07/59/confetti-2699249_960_720.png') repeat;
animation: confettiFall 3s infinite;
}
@keyframes confettiFall {
0% { transform: translateY(-100%); }
100% { transform: translateY(100%); }
}
/* Balloons */
.balloons {
position: absolute;
top: 20%;
left: 50%;
width: 200px;
height: 300px;
background: url('https://cdn.pixabay.com/photo/2016/03/05/19/23/balloons-1238469_960_720.jpg');
background-size: cover;
animation: balloonFloat 10s infinite;
}
@keyframes balloonFloat {
0% { transform: translateY(0); }
50% { transform: translateY(-10px); }
100% { transform: translateY(0); }
}
h1 {
font-size: 3em;
color: #ff6347;
animation: slideIn 2s ease-out;
}
.message {
font-size: 1.5em;
color: #444;
animation: fadeIn 3s ease-out;
}
/* Text Animations */
@keyframes slideIn {
from { transform: translateX(-200px); opacity: 0; }
to { transform: translateX(0); opacity: 1; }
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}