mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
27 lines
559 B
HTML
27 lines
559 B
HTML
<button class="button">
|
|
Button
|
|
</button>
|
|
|
|
<style>
|
|
/* From Uiverse.io by Rodrypaladin - Tags: simple, animation, purple, pink, button, click, css, click animation */
|
|
.button {
|
|
margin: 0 10px;
|
|
padding: 10px 30px;
|
|
border: 5px solid #DF34DB;
|
|
border-radius: 22px;
|
|
font-size: 20px;
|
|
color: #DF34DB;
|
|
transition: transform 0.1s ease-in, all 0.08s ease-in;
|
|
box-shadow: 0 5px 0 #dd04d9;
|
|
}
|
|
|
|
.button:hover {
|
|
border-color: #ff00c8;
|
|
box-shadow: 0 5px 0 #ff00c8;
|
|
}
|
|
|
|
.button:active {
|
|
transform: translateY(5px);
|
|
box-shadow: 0 0 0 #DF34DB;
|
|
}
|
|
</style>
|