mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
21 lines
363 B
HTML
21 lines
363 B
HTML
<button class="button"> Button
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by Yaseen549 - Tags: button */
|
|
.button {
|
|
color: #8707ff;
|
|
border: 2px solid #8707ff;
|
|
border-radius: 10px;
|
|
padding: 10px 25px;
|
|
background: transparent;
|
|
}
|
|
|
|
.button:hover {
|
|
box-shadow: 2px 2px 15px #8707ff inset;
|
|
}
|
|
|
|
.button:active {
|
|
box-shadow: 2px 2px 20px #8707ff inset;
|
|
}
|
|
|
|
</style>
|