mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
41 lines
777 B
HTML
41 lines
777 B
HTML
<button class="menu__button">
|
|
<span>Hover me!</span>
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by ArturCodeCraft - Tags: button, links, btn */
|
|
/* <reset-style> ============================ */
|
|
button {
|
|
border: none;
|
|
background: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
cursor: pointer;
|
|
font-family: inherit;
|
|
}
|
|
/* <main-style> ============================ */
|
|
.menu__button {
|
|
min-width: 62px;
|
|
height: 36px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding: 8px 16px;
|
|
border: 1px solid #fff;
|
|
background-color: transparent;
|
|
transition: background-color .4s;
|
|
}
|
|
|
|
.menu__button:hover {
|
|
background-color: #fff;
|
|
}
|
|
|
|
.menu__button span {
|
|
color: #fff;
|
|
line-height: 1;
|
|
transition: color .4s;
|
|
}
|
|
|
|
.menu__button:hover span {
|
|
color: #000;
|
|
}
|
|
</style>
|