mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
32 lines
595 B
HTML
32 lines
595 B
HTML
<button class="btn">Hover Me!
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by Mike11jr - Tags: button */
|
|
.btn {
|
|
width: 130px;
|
|
height: 40px;
|
|
font-size: 1.1em;
|
|
cursor: pointer;
|
|
background-color: #171717;
|
|
color: #fff;
|
|
border: none;
|
|
border-radius: 5px;
|
|
transition: all .4s;
|
|
}
|
|
|
|
.btn:hover {
|
|
border-radius: 5px;
|
|
transform: translateY(-10px);
|
|
box-shadow: 0 7px 0 -2px #f85959,
|
|
0 15px 0 -4px #39a2db,
|
|
0 16px 10px -3px #39a2db;
|
|
}
|
|
|
|
.btn:active {
|
|
transition: all 0.2s;
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 2px 0 -2px #f85959,
|
|
0 8px 0 -4px #39a2db,
|
|
0 12px 10px -3px #39a2db;
|
|
}
|
|
</style>
|