mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
21 lines
392 B
HTML
21 lines
392 B
HTML
|
|
<button class="button">Click Here</button>
|
|
<style>
|
|
/* From Uiverse.io by JasonMep - Tags: button */
|
|
.button {
|
|
color: #ecf0f1;
|
|
font-size: 17px;
|
|
background-color: #e67e22;
|
|
border: 1px solid #f39c12;
|
|
border-radius: 5px;
|
|
padding: 10px;
|
|
box-shadow: 0px 6px 0px #d35400;
|
|
transition: all .1s;
|
|
}
|
|
|
|
.button:active {
|
|
box-shadow: 0px 2px 0px #d35400;
|
|
position: relative;
|
|
top: 2px;
|
|
}
|
|
</style>
|