mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
24 lines
432 B
HTML
24 lines
432 B
HTML
<button>
|
|
Button
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by SteveBloX - Tags: blue, white, hover, button */
|
|
button {
|
|
width: 150px;
|
|
height: 60px;
|
|
border: 3px solid #315cfd;
|
|
border-radius: 45px;
|
|
transition: all 0.3s;
|
|
cursor: pointer;
|
|
background: white;
|
|
font-size: 1.2em;
|
|
font-weight: 550;
|
|
font-family: 'Montserrat', sans-serif;
|
|
}
|
|
|
|
button:hover {
|
|
background: #315cfd;
|
|
color: white;
|
|
font-size: 1.5em;
|
|
}
|
|
</style>
|