mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
24 lines
438 B
HTML
24 lines
438 B
HTML
<button>
|
|
Button
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by levxyca - Tags: button */
|
|
button {
|
|
font-family: monospace;
|
|
font-size: 1.5rem;
|
|
color: #FAFAFA;
|
|
text-transform: uppercase;
|
|
padding: 10px 20px;
|
|
border-radius: 10px;
|
|
border: 2px solid #FAFAFA;
|
|
background: #252525;
|
|
box-shadow: 3px 3px #fafafa;
|
|
cursor: pointer;
|
|
margin: 35px 0;
|
|
}
|
|
|
|
button:active {
|
|
box-shadow: none;
|
|
transform: translate(3px, 3px);
|
|
}
|
|
</style>
|