mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
30 lines
528 B
HTML
30 lines
528 B
HTML
<button class="button">
|
|
Vite Button
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by gharsh11032000 - Tags: button, border, hover effect */
|
|
.button {
|
|
border-radius: 8px;
|
|
border: 1px solid transparent;
|
|
padding: 0.6em 1.2em;
|
|
font-size: 1em;
|
|
font-weight: 500;
|
|
font-family: inherit;
|
|
background-color: #1a1a1a;
|
|
cursor: pointer;
|
|
color: white;
|
|
transition: border-color 0.25s;
|
|
}
|
|
|
|
.button:hover {
|
|
border-color: #646cff;
|
|
}
|
|
|
|
.button:focus,
|
|
.button:focus-visible {
|
|
outline: 4px auto -webkit-focus-ring-color;
|
|
}
|
|
|
|
|
|
|
|
</style>
|