mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
31 lines
595 B
HTML
31 lines
595 B
HTML
<button> Button
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by adamgiebl - Tags: simple, button, hover */
|
|
button {
|
|
position: relative;
|
|
display: inline-block;
|
|
margin: 15px;
|
|
padding: 15px 30px;
|
|
text-align: center;
|
|
font-size: 18px;
|
|
letter-spacing: 1px;
|
|
text-decoration: none;
|
|
color: #725AC1;
|
|
background: transparent;
|
|
cursor: pointer;
|
|
transition: ease-out 0.5s;
|
|
border: 2px solid #725AC1;
|
|
border-radius: 10px;
|
|
box-shadow: inset 0 0 0 0 #725AC1;
|
|
}
|
|
|
|
button:hover {
|
|
color: white;
|
|
box-shadow: inset 0 -100px 0 0 #725AC1;
|
|
}
|
|
|
|
button:active {
|
|
transform: scale(0.9);
|
|
}
|
|
</style>
|