Skip to content

Commit 5c0b7c4

Browse files
authored
Merge pull request #87 from sebastianlinloveslebronjames/main
Added new gradient button – Sebastian Lin
2 parents b85a692 + 614aee0 commit 5c0b7c4

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

sebastianlin2029button

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<button class="cool-button">Click Me!</button>
2+
<style>
3+
.cool-button {
4+
background: linear-gradient(to right, #007bff, #00c6ff);
5+
border: none;
6+
color: white;
7+
padding: 10px 20px;
8+
border-radius: 8px;
9+
cursor: pointer;
10+
}
11+
.cool-button:hover {
12+
opacity: 0.8;
13+
}
14+
</style>

0 commit comments

Comments
 (0)