Skip to content

Commit

Permalink
Merge branch 'main' into modify-branch
Browse files Browse the repository at this point in the history
  • Loading branch information
meetarora10 authored Aug 5, 2024
2 parents b02b1b6 + a8424c1 commit a97264e
Show file tree
Hide file tree
Showing 3 changed files with 422 additions and 856 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 a97264e

Please sign in to comment.