Skip to content

Commit 3598637

Browse files
Merge pull request #107 from Cypher1002/new-btn
created new button
2 parents b9e99c4 + 0fa83c6 commit 3598637

File tree

2 files changed

+43
-0
lines changed

2 files changed

+43
-0
lines changed

buttons/buttons.css

+30
Original file line numberDiff line numberDiff line change
@@ -2179,6 +2179,35 @@ a:focus-visible {
21792179

21802180
/* Jasimrazi-btn-1 ends here */
21812181

2182+
2183+
/* cypher's btn-3 start */
2184+
2185+
.cypher-btn-3 {
2186+
font-family: Helvetica;
2187+
/* letter-spacing: 0.2em; */
2188+
font-weight: 600;
2189+
font-size: 25px;
2190+
text-align: center;
2191+
color: #202125;
2192+
cursor: pointer;
2193+
/* max-width: 480px; */
2194+
width: 59%;
2195+
height: 30%;
2196+
outline: 3px solid;
2197+
outline-color: rgba(71, 126, 232,0.5);
2198+
outline-offset: 20px;
2199+
transition: all 200ms cubic-bezier(0.2, 0, 0, 0.8);
2200+
}
2201+
.cypher-btn-3:hover {
2202+
color: rgba(71, 126, 232, 0.7);
2203+
outline-color: rgba(71, 126, 232, 0);
2204+
outline-offset: 300px;
2205+
}
2206+
2207+
2208+
2209+
/* cypher's btn-3 end*/
2210+
21822211
/* Deepesh Sharma's button 1 starts*/
21832212
.deepeshsharmaofficial-button-1 {
21842213
border: 1px solid #3498db;
@@ -2219,3 +2248,4 @@ a:focus-visible {
22192248
height: 0%;
22202249
}
22212250
/* Deepesh Sharma's button 1 ends*/
2251+

index.html

+13
Original file line numberDiff line numberDiff line change
@@ -553,6 +553,18 @@
553553
</div>
554554
<!--Jasim Razi btn end-->
555555

556+
557+
<!-- cypher's btn-3 start -->
558+
<div class="button-container">
559+
<button class="cypher-btn-3">Hover me</button>
560+
<div class="createdby-section">
561+
Created by
562+
<a href="https://github.com/cypher1002">cypher 1002</a>
563+
</div>
564+
</div>
565+
<!-- cyphers btn-3 end -->
566+
567+
556568
<!-- Deepesh Sharma btn start-->
557569
<div class="button-container ">
558570
<button class="deepeshsharmaofficial-button-1"><span> Hover Me </span></button>
@@ -562,6 +574,7 @@
562574
</div>
563575
</div>
564576
<!-- Deepesh Sharma btn end-->
577+
565578
</div>
566579

567580
</main>

0 commit comments

Comments
 (0)