mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
27 lines
559 B
HTML
27 lines
559 B
HTML
<button type="button">
|
|
Hover
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by themarcBlanchard - Tags: button */
|
|
button {
|
|
padding: .5rem 2rem;
|
|
border-radius: 5px;
|
|
font-weight: 600;
|
|
border: 1px solid black;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #1a5cff;
|
|
color: white;
|
|
transform: scale(1.1);
|
|
font-weight: 700;
|
|
-webkit-box-shadow: 7px 7px 23px -12px rgba(26,91,255,1);
|
|
-moz-box-shadow: 7px 7px 23px -12px rgba(26,91,255,1);
|
|
box-shadow: 7px 7px 23px -12px rgba(26,91,255,1);
|
|
border: none;
|
|
}
|
|
|
|
button:active {
|
|
background-color: #1752e5;
|
|
}
|
|
</style>
|