mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
22 lines
406 B
HTML
22 lines
406 B
HTML
<button class="button"> Button
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by Yaseen549 - Tags: button */
|
|
.button {
|
|
color: #ecf0f1;
|
|
font-size: 17px;
|
|
background-color: #212121;
|
|
border: 1px solid #ffffff;
|
|
border-radius: 5px;
|
|
padding: 10px;
|
|
box-shadow: 0px 6px 0px #787878;
|
|
transition: all 50ms;
|
|
width: 120px;
|
|
}
|
|
|
|
.button:active {
|
|
box-shadow: 0px 2px 0px #787878;
|
|
position: relative;
|
|
top: 2px;
|
|
}
|
|
</style>
|