mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
46 lines
822 B
HTML
46 lines
822 B
HTML
<button class="btn"> Shop now
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by Mike11jr - Tags: button */
|
|
.btn {
|
|
padding: 1.1em 2em;
|
|
background: none;
|
|
border: 2px solid #fff;
|
|
font-size: 15px;
|
|
color: #131313;
|
|
cursor: pointer;
|
|
position: relative;
|
|
overflow: hidden;
|
|
transition: all 0.3s;
|
|
border-radius: 12px;
|
|
background-color: #ecd448;
|
|
font-weight: bolder;
|
|
box-shadow: 0 2px 0 2px #000;
|
|
}
|
|
|
|
.btn:before {
|
|
content: "";
|
|
position: absolute;
|
|
width: 100px;
|
|
height: 120%;
|
|
background-color: #ff6700;
|
|
top: 50%;
|
|
transform: skewX(30deg) translate(-150%, -50%);
|
|
transition: all 0.5s;
|
|
}
|
|
|
|
.btn:hover {
|
|
background-color: #4cc9f0;
|
|
color: #fff;
|
|
box-shadow: 0 2px 0 2px #0d3b66;
|
|
}
|
|
|
|
.btn:hover::before {
|
|
transform: skewX(30deg) translate(150%, -50%);
|
|
transition-delay: 0.1s;
|
|
}
|
|
|
|
.btn:active {
|
|
transform: scale(0.9);
|
|
}
|
|
</style>
|