Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

created new btn #99

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions buttons/buttons.css
Original file line number Diff line number Diff line change
Expand Up @@ -2047,3 +2047,53 @@ box-shadow: rgb(40, 159, 237) 5px 5px 0px 0px, rgb(95, 184, 255) 10px 10px 0px 0

/* Sumit-btn-3 end */

/* cypher's btn-3 start */

.cypher-btn-3{
padding: 6px;
padding-bottom: 0.5em;
position: relative;
padding-top: 0.5em;
font-size: 20px;
text-transform: uppercase;
color: #fff;
border: none;
background-color: transparent;
transition: 0.3s;
}

.cypher-btn-3::after {
content: '';
background-color: white;
position: absolute;
bottom: 0;
left: 0;
width: 10%;
height: 5%;
transition: 0.3s;
}

.cypher-btn-3::before {
content: '';
background-color: white;
position: absolute;
top: 0;
right: 0;
width: 10%;
height: 5%;
transition: 0.3s;
}

.cypher-btn-3:hover {
text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073,
0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
}

.cypher-btn-3:hover::after {
width: 100%;
}

.cypher-btn-3::before {
width: 100%;
}
/* cypher's btn-3 end*/
10 changes: 9 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,15 @@
<!-- Sumit3 btn end -->



<!-- cypher's btn-3 start -->
<div class="button-container">
<button class="cypher-btn-3">Hover me</button>
<div class="createdby-section">
Created by
<a href="https://github.com/cypher1002">cypher 1002</a>
</div>
</div>
<!-- cyphers btn-3 end -->



Expand Down