Skip to content

Commit

Permalink
Merge pull request #854 from imsudiptaa/button
Browse files Browse the repository at this point in the history
New Feature add: Register Today Button UI updated #853
  • Loading branch information
PriyaGhosal authored Oct 30, 2024
2 parents 5157823 + 1b5959a commit 62bb97c
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -907,6 +907,38 @@ <h2 class="" id="cta-label" data-aos="zoom-in">
</button>
</div>
</section>
<style>
.register-b {
padding: 10px 20px;
text-transform: uppercase;
border-radius: 8px;
font-size: 17px;
font-weight: 500;
color: white;
text-shadow: none;
background: transparent;
cursor: pointer;
box-shadow: transparent;
border: 1px solid white;
transition: 0.5s ease;
user-select: none;
}
.register-b:hover {
color: #ffffff;
background: #FF8086;
border: 1px solid white;
text-shadow:
0 0 5px #ffffff,
0 0 10px #ffffff,
0 0 20px #ffffff;
box-shadow:
0 0 5px #FF8086,
0 0 20px #FF8086,
0 0 40px #FF8086,
0 0 60px #FF8086,
0 0 80px #FF8086;
}
</style>


<!-- <section class="cta-section" aria-labelledby="cta-heading">
Expand Down

0 comments on commit 62bb97c

Please sign in to comment.