mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
28 lines
498 B
HTML
28 lines
498 B
HTML
<button>
|
|
START
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by KSAplay - Tags: button */
|
|
button {
|
|
background-color: #0050ec;
|
|
color: white;
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
padding: 15px 20px;
|
|
border-radius: 2em;
|
|
cursor: pointer;
|
|
transition: 0.1s ease;
|
|
border-width: 0;
|
|
box-shadow: 1px 5px 0 0 #0e285d;
|
|
}
|
|
|
|
button:hover {
|
|
transform: translateY(-4px);
|
|
box-shadow: 1px 9px 0 0 #0e285d;
|
|
}
|
|
|
|
button:active {
|
|
transform: translateY(4px);
|
|
box-shadow: 0px 0px 0 0 #0e285d;
|
|
}
|
|
</style>
|