mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
24 lines
No EOL
444 B
HTML
24 lines
No EOL
444 B
HTML
<button class="button">Hover me</button>
|
|
|
|
<style>
|
|
/* From Uiverse.io by nishikalewis - Tags: button */
|
|
button {
|
|
background: none;
|
|
color: cyan;
|
|
border: 2px solid cyan;
|
|
padding: 1em 2em;
|
|
font-size: 1em;
|
|
border-radius: 0.5em;
|
|
cursor: pointer;
|
|
transition: all 0.25s ease-in-out;
|
|
}
|
|
|
|
button:hover {
|
|
border-color: magenta;
|
|
color: white;
|
|
box-shadow: 0 0.6em 0.6em -0.3em magenta;
|
|
transform: translateY(-0.3em);
|
|
}
|
|
|
|
</style>
|
|
|