mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
48 lines
833 B
HTML
48 lines
833 B
HTML
<button class="button">
|
|
Button
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by gauravsharmadriveit - Tags: button, active, animated */
|
|
.button {
|
|
font-weight: 600;
|
|
display: inline-block;
|
|
position: relative;
|
|
border: 3px solid #fff;
|
|
padding: 15px 60px;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.button::after, .button::before {
|
|
position: absolute;
|
|
content: "";
|
|
width: 0;
|
|
height: 0;
|
|
transition: .5s;
|
|
}
|
|
|
|
button::after {
|
|
top: -3px;
|
|
left: -3px;
|
|
border-top: 3px solid transparent;
|
|
border-left: 3px solid transparent;
|
|
}
|
|
|
|
button::before {
|
|
bottom: -3px;
|
|
right: -3px;
|
|
border-bottom: 3px solid transparent;
|
|
border-right: 3px solid transparent;
|
|
}
|
|
|
|
button:hover {
|
|
color: #0668C9;
|
|
cursor: pointer;
|
|
}
|
|
|
|
button:hover::after,
|
|
button:hover::before {
|
|
width: calc(50% + 3px);
|
|
height: calc(50% + 3px);
|
|
border-color: #0668C9;
|
|
}
|
|
</style>
|