mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
23 lines
593 B
HTML
23 lines
593 B
HTML
<button>
|
|
Button
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by Gianluks90 - Tags: button */
|
|
button {
|
|
padding: 1em 2em;
|
|
font-size: 1em;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.1em;
|
|
color: #504f4f;
|
|
border: none;
|
|
background: #e0e0e0;
|
|
-webkit-box-shadow: 10px 10px 30px #bebebe, -20px -20px 60px #ffffff;
|
|
box-shadow: 10px 10px 30px #bebebe, -20px -20px 60px #ffffff;
|
|
}
|
|
|
|
button:hover {
|
|
background: #e0e0e0;
|
|
-webkit-box-shadow: inset 10px 10px 30px #bebebe, inset -10px -10px 30px #ffffff;
|
|
box-shadow: inset 10px 10px 30px #bebebe, inset -10px -10px 30px #ffffff;
|
|
}
|
|
</style>
|