mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
78 lines
1.2 KiB
HTML
78 lines
1.2 KiB
HTML
<button>
|
|
<span>Button</span><i></i>
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by mrhyddenn - Tags: button */
|
|
button {
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.1em;
|
|
padding: 10px 30px;
|
|
transition: 0.5s;
|
|
position: relative;
|
|
font-size: 17px;
|
|
background: #333;
|
|
border: none;
|
|
color: #fff;
|
|
}
|
|
|
|
button:hover {
|
|
letter-spacing: 0.25em;
|
|
background: #ff1867;
|
|
color: #ff1867;
|
|
box-shadow: 0 0 45px #ff1867;
|
|
}
|
|
|
|
button::before {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 2px;
|
|
background: #222222;
|
|
}
|
|
|
|
button span {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
button i {
|
|
position: absolute;
|
|
inset: 0;
|
|
display: block;
|
|
}
|
|
|
|
button i::before {
|
|
content: '';
|
|
position: absolute;
|
|
border: 2px solid #ff1867;
|
|
width: 7px;
|
|
height: 4px;
|
|
top: -3.5px;
|
|
left: 80%;
|
|
background: #222222;
|
|
transform: translateX(-50%);
|
|
transition: 0.5s;
|
|
}
|
|
|
|
button:hover i::before {
|
|
width: 20px;
|
|
left: 20%;
|
|
}
|
|
|
|
button i::after {
|
|
content: '';
|
|
position: absolute;
|
|
border: 2px solid #ff1867;
|
|
width: 7px;
|
|
height: 4px;
|
|
bottom: -3.5px;
|
|
left: 20%;
|
|
background: #222222;
|
|
transform: translateX(-50%);
|
|
transition: 0.5s;
|
|
}
|
|
|
|
button:hover i::after {
|
|
width: 20px;
|
|
left: 80%;
|
|
}
|
|
</style>
|