mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
25 lines
441 B
HTML
25 lines
441 B
HTML
<button class="Btn">Click Me</button>
|
|
<style>
|
|
/* From Uiverse.io by 1osm - Tags: button */
|
|
/* Button 1 */
|
|
.Btn {
|
|
width: 150px;
|
|
height: 50px;
|
|
background-color: transparent;
|
|
color: white;
|
|
font-weight: bold;
|
|
border-width: 2px;
|
|
border-color: #FF5858;
|
|
border-radius: 20px;
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
.Btn:hover {
|
|
transform: translateY(-10px);
|
|
background-color: #FF5858;
|
|
}
|
|
|
|
.Btn::after {
|
|
transform: translateY(0);
|
|
}
|
|
</style>
|