mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
39 lines
707 B
HTML
39 lines
707 B
HTML
|
|
<button>BUTTON</button>
|
|
<style>
|
|
/* From Uiverse.io by ercnersoy - Tags: button */
|
|
button {
|
|
padding: 20px 30px;
|
|
border-radius: 30px;
|
|
border: 5px solid #ffffff;
|
|
background-color: #5584AC;
|
|
font-size: 15px;
|
|
color: white;
|
|
letter-spacing: 5px;
|
|
font-weight: bolder;
|
|
animation: none;
|
|
transition: all .5s ease-in-out;
|
|
font-family: 'Rajdhani', sans-serif;
|
|
}
|
|
|
|
button:hover {
|
|
border-radius: 30px 30px 0px 30px;
|
|
box-shadow: inset 0px 30px 10px -25px black;
|
|
transition: all .5s ease-in-out;
|
|
animation: bounce42 1.6s infinite;
|
|
}
|
|
|
|
@keyframes bounce42 {
|
|
0%, 20%, 50%, 80%, 100% {
|
|
transform: translateY(0);
|
|
}
|
|
|
|
40% {
|
|
transform: translateY(-5px);
|
|
}
|
|
|
|
60% {
|
|
transform: translateY(-5px);
|
|
}
|
|
}
|
|
</style>
|