mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
27 lines
575 B
HTML
27 lines
575 B
HTML
<button class="button">
|
|
Hover me
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by gharsh11032000 - Tags: button, shadow, hover effect */
|
|
.button {
|
|
padding: 15px 20px;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
border: 2px solid #414141;
|
|
color: white;
|
|
background-color: transparent;
|
|
cursor: pointer;
|
|
border-radius: 10px;
|
|
text-transform: uppercase;
|
|
transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
|
|
}
|
|
|
|
.button:hover {
|
|
border-color: #0974f1;
|
|
box-shadow: 0 0 20px rgba(9, 117, 241, 0.8);
|
|
}
|
|
|
|
.button:active {
|
|
box-shadow: 0 0 10px rgba(9, 117, 241, 0.4);
|
|
}
|
|
</style>
|