Skip to content

Commit

Permalink
Merge pull request #3373 from ShaikHafiza/main
Browse files Browse the repository at this point in the history
Modified the transition effect for "Rate Us" section.
  • Loading branch information
sailaja-adapa authored Oct 13, 2024
2 parents d369dd6 + 9e67f05 commit c0b8972
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4933,11 +4933,19 @@ <h3 class="card-sty" style="text-align: center;">Organizations</h3>
<style>
#rate-us {
transition: background-color 0.3s ease;
padding: 10px 20px;
background-color: #b51e26;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease, transform 0.3s ease;
}

#rate-us:hover {
background-color: #A30F17;
color: white;
transform: scale(1.1);
} /* Closing brace for #rate-us:hover */

/* Additional styles */
Expand Down

0 comments on commit c0b8972

Please sign in to comment.