mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
43 lines
616 B
HTML
43 lines
616 B
HTML
<button>
|
|
Button
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by Shoh2008 - Tags: button, jelly */
|
|
button {
|
|
padding: 15px 30px;
|
|
font-size: 18px;
|
|
outline: none;
|
|
border: none;
|
|
border-radius: 10px;
|
|
transition: 0.5s;
|
|
background: #1e1e1e;
|
|
color: greenyellow;
|
|
box-shadow: 0 0 10px #363636, inset 0 0 10px #363636;
|
|
}
|
|
|
|
button:hover {
|
|
animation: a 0.5s 1 linear;
|
|
}
|
|
|
|
@keyframes a {
|
|
0% {
|
|
transform: scale(0.7, 1.3);
|
|
}
|
|
|
|
25% {
|
|
transform: scale(1.3, 0.7);
|
|
}
|
|
|
|
50% {
|
|
transform: scale(0.7, 1.3);
|
|
}
|
|
|
|
75% {
|
|
transform: scale(1.3, 0.7);
|
|
}
|
|
|
|
100% {
|
|
transform: scale(1, 1);
|
|
}
|
|
}
|
|
</style>
|