mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
25 lines
No EOL
479 B
HTML
25 lines
No EOL
479 B
HTML
<button class="button">Winter</button>
|
|
|
|
<style>
|
|
/* From Uiverse.io by KhelVers - Tags: simple, 3d, button */
|
|
.button {
|
|
cursor: pointer;
|
|
font-size: large;
|
|
font-family: inherit;
|
|
font-weight: bold;
|
|
color: #0011ff;
|
|
background-color: #f8f8fd;
|
|
padding: 0.8em 2.2em;
|
|
border-radius: 50em;
|
|
border: 6px solid #8b93f8;
|
|
box-shadow: 0px 8px #1f35ff;
|
|
}
|
|
.button:active {
|
|
position: relative;
|
|
top: 8px;
|
|
border: 6px solid #646fff;
|
|
box-shadow: 0px 0px;
|
|
}
|
|
|
|
</style>
|
|
|