mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
23 lines
452 B
HTML
23 lines
452 B
HTML
<button> Button
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by arieshiphop - Tags: button */
|
|
button {
|
|
font-size: 17px;
|
|
padding: 0.5em 2em;
|
|
border: transparent;
|
|
box-shadow: 2px 2px 4px rgba(0,0,0,0.4);
|
|
background: dodgerblue;
|
|
color: white;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
button:hover {
|
|
background: rgb(2,0,36);
|
|
background: linear-gradient(90deg, rgba(30,144,255,1) 0%, rgba(0,212,255,1) 100%);
|
|
}
|
|
|
|
button:active {
|
|
transform: translate(0em, 0.2em);
|
|
}
|
|
</style>
|