mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-27 20:50:21 +08:00
30 lines
585 B
HTML
30 lines
585 B
HTML
<button class="btn">Hover</button>
|
|
<style>
|
|
/* From Uiverse.io by Codecite - Tags: simple, gradient, button, clean */
|
|
.btn {
|
|
transition: all 0.3s ease-in-out;
|
|
font-family: "Dosis", sans-serif;
|
|
}
|
|
|
|
.btn {
|
|
width: 150px;
|
|
height: 60px;
|
|
border-radius: 50px;
|
|
background-image: linear-gradient(135deg, #feb692 0%, #ea5455 100%);
|
|
box-shadow: 0 20px 30px -6px rgba(238, 103, 97, 0.5);
|
|
outline: none;
|
|
cursor: pointer;
|
|
border: none;
|
|
font-size: 24px;
|
|
color: white;
|
|
}
|
|
|
|
.btn:hover {
|
|
transform: translateY(3px);
|
|
box-shadow: none;
|
|
}
|
|
|
|
.btn:active {
|
|
opacity: 0.5;
|
|
}
|
|
</style>
|