Skip to content

Commit

Permalink
stylelint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
octavioamu committed Feb 14, 2020
1 parent 3856d30 commit 34bbfbb
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions app/assets/v2/css/town_square.css
Original file line number Diff line number Diff line change
Expand Up @@ -324,24 +324,25 @@ a.offer_container:hover {
.offer_container.animate:hover .prize-gift::after {
animation: pulse-white 4s linear infinite, rotate 10s linear infinite;
}

@keyframes rotate {
100% {
transform: rotateZ(360deg);
}
}

@keyframes pulse-white {
0% {
box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
}
0% {
box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
}

70% {
box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
}
70% {
box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
}

100% {
box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
}
}

.daily .prize-gift {
Expand Down

0 comments on commit 34bbfbb

Please sign in to comment.