mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
27 lines
522 B
HTML
27 lines
522 B
HTML
|
|
<button id="bottone1"><strong>Discover features</strong></button>
|
|
<style>
|
|
/* From Uiverse.io by Custyyyy - Tags: button */
|
|
#bottone1 {
|
|
padding-left: 33px;
|
|
padding-right: 33px;
|
|
padding-bottom: 16px;
|
|
padding-top: 16px;
|
|
border-radius: 9px;
|
|
background: #d5f365;
|
|
border: none;
|
|
font-family: inherit;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
transition: 0.4s;
|
|
}
|
|
|
|
#bottone1:hover {
|
|
box-shadow: 7px 5px 56px -14px #C3D900;
|
|
}
|
|
|
|
#bottone1:active {
|
|
transform: scale(0.97);
|
|
box-shadow: 7px 5px 56px -10px #C3D900;
|
|
}
|
|
</style>
|