mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
34 lines
644 B
HTML
34 lines
644 B
HTML
<button class="btn"> Button
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by Gumpack - Tags: button */
|
|
.btn {
|
|
background-image: linear-gradient(45deg, #FF512F 0%, #F09819 51%, #FF512F 100%)
|
|
}
|
|
|
|
.btn {
|
|
margin: 10px;
|
|
padding: 15px 30px;
|
|
text-align: center;
|
|
text-transform: uppercase;
|
|
transition: 0.5s;
|
|
background-size: 200% auto;
|
|
color: white;
|
|
border-radius: 10px;
|
|
display: block;
|
|
border: 0px;
|
|
font-weight: 700;
|
|
box-shadow: 0px 0px 14px -7px #f09819;
|
|
}
|
|
|
|
.btn:hover {
|
|
background-position: right center;
|
|
/* change the direction of the change here */
|
|
color: #fff;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.btn:active {
|
|
transform: scale(0.95);
|
|
}
|
|
</style>
|