mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-27 20:50:21 +08:00
34 lines
840 B
HTML
34 lines
840 B
HTML
<button class="button">
|
|
Click Me
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by laminelawal - Tags: button, 3d button */
|
|
button {
|
|
border-radius: 30px;
|
|
border: none;
|
|
cursor: pointer;
|
|
outline: none;
|
|
width: 150px;
|
|
height: 54px;
|
|
background-image: linear-gradient(to top, #222 0%, #333 80%, #444 100%);
|
|
color: white;
|
|
font-size: 20px;
|
|
font-weight: 400;
|
|
font-family: monospace;
|
|
transition: all 0.3s;
|
|
text-shadow: 0 4px 3px black;
|
|
}
|
|
|
|
button:hover {
|
|
box-shadow: 0 4px 3px 1px #333, 0 6px 8px #222, 0 -4px 4px #222, 0 -6px 4px #333, inset 0 0 3px 3px black;
|
|
}
|
|
|
|
button:active {
|
|
box-shadow: 0 4px 3px 1px #333, 0 6px 8px #222, 0 -4px 4px #222, 0 -6px 4px #333, inset 0 0 3px 3px black;
|
|
}
|
|
|
|
button:focus {
|
|
box-shadow: 0 4px 3px 1px #333, 0 6px 8px #222, 0 -4px 4px #222, 0 -6px 4px #333, inset 0 5px 7px 0 black;
|
|
}
|
|
|
|
</style>
|