mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
51 lines
748 B
HTML
51 lines
748 B
HTML
<button class="btn">Button
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by martinval9 - Tags: button */
|
|
.btn {
|
|
color: #B500FF;
|
|
padding: 13px 20px;
|
|
border: 2px solid #B500FF;
|
|
font-size: 17px;
|
|
transition: 0.3s;
|
|
border-radius: 10px;
|
|
font-family: Arial;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.btn:hover {
|
|
transition: 0.3s;
|
|
background-color: #B500FF;
|
|
margin-top: -20px;
|
|
color: #fff;
|
|
animation-name: button_animation;
|
|
animation-duration: 3s;
|
|
animation-iteration-count: infinite;
|
|
}
|
|
|
|
.btn:active {
|
|
transform: scale(0.97);
|
|
}
|
|
|
|
@keyframes button_animation {
|
|
0% {
|
|
background-color: #B500FF;
|
|
}
|
|
|
|
25% {
|
|
background-color: #000000;
|
|
}
|
|
|
|
50% {
|
|
background-color: #B500FF;
|
|
}
|
|
|
|
75% {
|
|
background-color: #000000;
|
|
}
|
|
|
|
100% {
|
|
background-color: #B500FF;
|
|
}
|
|
}
|
|
</style>
|