We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9541756 commit 5103e66Copy full SHA for 5103e66
index.css
@@ -1,3 +1,21 @@
1
+.confeti {
2
+ position: absolute;
3
+ width: 10px;
4
+ height: 10px;
5
+ background-color: #e74c3c;
6
+ border-radius: 50%;
7
+ animation: explode 2s infinite;
8
+ }
9
+ @keyframes explode {
10
+ 0% {
11
+ transform: translateY(1) ;
12
+ opacity: 1;
13
14
+ 100% {
15
+ transform: translateY(100vh) rotate(720deg);
16
+ opacity: 0;
17
18
19
/*Primavera*/
20
.flower {
21
position: absolute;
@@ -44,8 +62,10 @@
44
62
}
45
63
46
64
@keyframes fall {
47
- 0% { top: -10px; }
48
- 100% { top: 100%; }
65
+ 0% { top: 0px;
66
+ opacity: 1;}
67
+ 100% { top: 100%;
68
+ opacity: 0;}
49
69
50
70
/*Página*/
51
71
#notification {
0 commit comments