mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
25 lines
No EOL
482 B
HTML
25 lines
No EOL
482 B
HTML
<button class="button">Button</button>
|
|
|
|
<footer></footer>
|
|
|
|
<style>
|
|
/* From Uiverse.io by ZiyadOuamna - Tags: button, active, like, dark, light, shadow, modern, click */
|
|
.button {
|
|
cursor: pointer;
|
|
padding: 10px 20px;
|
|
border-radius: 15px;
|
|
background-color: gray;
|
|
font-weight: bolder;
|
|
font-size: 25px;
|
|
border: 2px solid black;
|
|
transition: all 0.5s;
|
|
}
|
|
.button:hover {
|
|
background-color: aqua;
|
|
box-shadow: 0px 0px 15px aqua;
|
|
|
|
transform: scale(0.9);
|
|
}
|
|
|
|
</style>
|
|
|