mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
50 lines
846 B
HTML
50 lines
846 B
HTML
<button>Button</button>
|
|
<style>
|
|
/* From Uiverse.io by SuliLevente - Tags: button */
|
|
button {
|
|
background-color: #040810;
|
|
color: #C7C7C7;
|
|
padding: 15px;
|
|
text-transform: uppercase;
|
|
font-weight: bold;
|
|
font-size: 17px;
|
|
overflow: hidden;
|
|
position: relative;
|
|
border: 3px double #2D6FBB;
|
|
z-index: 1;
|
|
}
|
|
|
|
button::before {
|
|
content: "";
|
|
background-color: #2D6FBB;
|
|
transform: translateX(-100%);
|
|
position: absolute;
|
|
height: 100%;
|
|
width: 100%;
|
|
top: 0;
|
|
left: 0;
|
|
transition: all 0.3s;
|
|
z-index: -1;
|
|
}
|
|
|
|
button:hover::before {
|
|
transform: translateX(0);
|
|
}
|
|
|
|
button::after {
|
|
content: "";
|
|
background-color: #2D6FBB;
|
|
transform: translateX(100%);
|
|
position: absolute;
|
|
height: 100%;
|
|
width: 100%;
|
|
top: 0;
|
|
left: 0;
|
|
transition: all 0.3s;
|
|
z-index: -1;
|
|
}
|
|
|
|
button:hover::after {
|
|
transform: translateX(0);
|
|
}
|
|
</style>
|