mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
22 lines
No EOL
494 B
HTML
22 lines
No EOL
494 B
HTML
<button class="button">Simple button</button>
|
|
|
|
<style>
|
|
/* From Uiverse.io by VassoD - Tags: minimalist, button, dark, simple button */
|
|
.button {
|
|
cursor: pointer;
|
|
background: rgba(255, 255, 255, 0.15);
|
|
backdrop-filter: blur(10px);
|
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
color: #fff;
|
|
padding: 10px 20px;
|
|
border-radius: 0.5rem;
|
|
transition: background 0.3s ease-in-out;
|
|
}
|
|
|
|
.button:hover {
|
|
background: rgba(255, 255, 255, 0.25);
|
|
text-decoration: underline;
|
|
}
|
|
|
|
</style>
|
|
|