mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
37 lines
612 B
HTML
37 lines
612 B
HTML
<button> Button
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by kiru2741 - Tags: button */
|
|
button {
|
|
padding: 10px;
|
|
font-size: 15px;
|
|
outline: none;
|
|
border: 2px solid black;
|
|
background-color: white;
|
|
color: white;
|
|
position: relative;
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
button::before {
|
|
content: 'Button';
|
|
/*Button's value/text-content */
|
|
position: absolute;
|
|
top: -14%;
|
|
left: 7%;
|
|
background-color: black;
|
|
width: 100%;
|
|
height: 100%;
|
|
color: white;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
transition: 0.15s ease-in-out;
|
|
font-weight: bold;
|
|
}
|
|
|
|
button:hover::before {
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
</style>
|