mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
32 lines
708 B
HTML
32 lines
708 B
HTML
<button> Grab it!
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by bhaveshxrawat - Tags: button */
|
|
button {
|
|
background-color: #fff;
|
|
border-radius: 24px;
|
|
border-style: none;
|
|
box-shadow: rgba(0, 0, 0, .2) 0 3px 5px -1px,rgba(0, 0, 0, .14) 0 6px 10px 0,rgba(0, 0, 0, .12) 0 1px 18px 0;
|
|
box-sizing: border-box;
|
|
color: #3c4043;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
font-family: inherit;
|
|
letter-spacing: .25px;
|
|
line-height: normal;
|
|
padding: 11px 24px;
|
|
transition: background box-shadow 280ms ease;
|
|
}
|
|
|
|
button:hover {
|
|
background: #F6F9FE;
|
|
color: #174ea6;
|
|
}
|
|
|
|
button:active {
|
|
box-shadow: 0 4px 4px 0 rgb(60 64 67 / 30%), 0 8px 12px 6px rgb(60 64 67 / 15%);
|
|
outline: none;
|
|
border: 2px solid #4285f4;
|
|
}
|
|
|
|
</style>
|