Skip to content

Commit

Permalink
Merge pull request #913 from sailaja-adapa/emoji
Browse files Browse the repository at this point in the history
Added Emojis
  • Loading branch information
RitiChandak authored Aug 5, 2024
2 parents 12fbb1d + cce38e1 commit a8424c1
Show file tree
Hide file tree
Showing 2 changed files with 289 additions and 230 deletions.
22 changes: 22 additions & 0 deletions assets/css/rateus.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,28 @@ body {
.rate-container .stars {
margin-bottom: 20px;
}
.rate-container .rating-emoji {
font-size: 30px;
cursor: pointer;
transition: transform 0.3s, text-shadow 0.3s;
}

.rate-container .rating-emoji:hover,
.rate-container .rating-emoji.selected {
transform: scale(1.5);
text-shadow: 0 0 10px yellow;
animation: shine 1s infinite alternate;
}

@keyframes shine {
from {
text-shadow: 0 0 20px yellow;
}
to {
text-shadow: 0 0 30px yellow;
}
}


.rate-container .star {
font-size: 30px;
Expand Down
Loading

0 comments on commit a8424c1

Please sign in to comment.