We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aab514b commit 590fa85Copy full SHA for 590fa85
1 file changed
14. Heart/style.css
@@ -19,7 +19,7 @@ body {
19
20
/* gray-heart */
21
.gray-heart {
22
- background: #AA0000;
+ background: var(--secondry-color);
23
display: flex;
24
justify-content: center;
25
align-items: center;
@@ -33,7 +33,7 @@ body {
33
.gray-heart:before,
34
.gray-heart:after {
35
content: "";
36
37
border-radius: 50%;
38
height: 100px;
39
width: 100px;
@@ -93,6 +93,10 @@ body {
93
}
94
95
@keyframes pop {
96
+ 0% {
97
+ transform: scale(1.7) rotate(-45deg);
98
+ opacity: 0;
99
+ }
100
100% {
101
transform: scale(1.7) rotate(-45deg);
102
opacity: 0;
0 commit comments