mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
24 lines
490 B
HTML
24 lines
490 B
HTML
<button>
|
|
GET STARTED
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by mrhyddenn - Tags: button */
|
|
button {
|
|
background-color: #1197cc;
|
|
box-shadow: #094c66 4px 4px 0px;
|
|
border-radius: 8px;
|
|
padding: 15px 10px;
|
|
color: #fff;
|
|
border: none;
|
|
font-weight: bold;
|
|
font-size: 15px;
|
|
text-transform: uppercase;
|
|
min-width: 120px;
|
|
transition: transform 200ms, box-shadow 200ms;
|
|
}
|
|
|
|
button:active {
|
|
transform: translateY(4px) translateX(4px);
|
|
box-shadow: #094c66 0px 0px 0px;
|
|
}
|
|
</style>
|