mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
31 lines
626 B
HTML
31 lines
626 B
HTML
<button class="btn"><span>Button</span></button>
|
|
<style>
|
|
/* From Uiverse.io by Codecite - Tags: button, hover, btn, hover effect */
|
|
.btn {
|
|
border: 0 solid;
|
|
cursor: pointer;
|
|
font-family: system-ui;
|
|
font-size: 100%;
|
|
background: linear-gradient(90deg, blue, red);
|
|
border-radius: 999px;
|
|
font-weight: 900;
|
|
padding: 1.8rem 5rem;
|
|
position: relative;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.btn span {
|
|
background: #1e293b;
|
|
border-radius: 999px;
|
|
color: #fff;
|
|
display: grid;
|
|
inset: 5px;
|
|
place-items: center;
|
|
position: absolute;
|
|
transition: background 0.3s;
|
|
}
|
|
|
|
.btn:hover span {
|
|
background: none;
|
|
}
|
|
</style>
|