Skip to content

Commit

Permalink
Merge pull request #859 from shmbhvi101/main
Browse files Browse the repository at this point in the history
Hover effect + box shadow added to "view all" in 'Meet Core Members' Section
  • Loading branch information
SauravMukherjee44 authored Jun 13, 2024
2 parents d5d29c1 + eac200c commit 467a8b5
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,30 @@
<!-- animate on scroll import -->
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<!-- animate on scroll import end -->

<style>
.Cbtn {

margin: 20px auto 10px;

background-color: white;
border-radius: 25px;
color: #F7B801; /* Initial text color is white */
transition: all 0.3s ease; /* Smooth transition for hover effects */

text-align: center; /* Center align text */
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
cursor: pointer; /* Change cursor to pointer */
}

.Cbtn:hover {
background-color:#F7B801;
color: white; /* Text color changes to yellow on hover */
border: 4px solid white;



}
</style>
</head>

<body>
Expand Down

0 comments on commit 467a8b5

Please sign in to comment.