mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
23 lines
385 B
HTML
23 lines
385 B
HTML
<button>
|
|
Button
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by Mhyar-nsi - Tags: blue, button, hover, ring */
|
|
button {
|
|
font-family: monospace;
|
|
background-color: #f3f7fe;
|
|
color: #3b82f6;
|
|
border: none;
|
|
border-radius: 8px;
|
|
width: 100px;
|
|
height: 45px;
|
|
transition: .3s;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #3b82f6;
|
|
box-shadow: 0 0 0 5px #3b83f65f;
|
|
color: #fff;
|
|
}
|
|
|
|
</style>
|