-
Notifications
You must be signed in to change notification settings - Fork 421
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #859 from shmbhvi101/main
Hover effect + box shadow added to "view all" in 'Meet Core Members' Section
- Loading branch information
Showing
1 changed file
with
24 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -97,7 +97,30 @@ | |
<!-- animate on scroll import --> | ||
<script src="https://unpkg.com/[email protected]/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> | ||
|