mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
26 lines
590 B
HTML
26 lines
590 B
HTML
<button class="cyberpunk-button">Click me</button>
|
|
<style>
|
|
/* From Uiverse.io by adamgiebl - Tags: button */
|
|
.cyberpunk-button {
|
|
background-color: #2f3640;
|
|
color: #fff;
|
|
border: 2px solid #ff7979;
|
|
border-radius: 5px;
|
|
padding: 10px 15px;
|
|
font-size: 18px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 2px;
|
|
font-weight: bold;
|
|
box-shadow: 2px 2px 10px #ff7979;
|
|
transition: all 0.2s ease-in-out;
|
|
}
|
|
|
|
.cyberpunk-button:hover {
|
|
background-color: #ff7979;
|
|
color: #2f3640;
|
|
border-color: #2f3640;
|
|
box-shadow: 2px 2px 20px #2f3640;
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
</style>
|