mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
32 lines
809 B
HTML
32 lines
809 B
HTML
<button>
|
|
GET STARTED
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by niat786 - Tags: button */
|
|
button {
|
|
border-radius: .25rem;
|
|
text-transform: uppercase;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
padding-left: 25px;
|
|
padding-right: 25px;
|
|
color: #fff;
|
|
-webkit-clip-path: polygon(0 0,0 0,100% 0,100% 0,100% calc(100% - 15px),calc(100% - 15px) 100%,15px 100%,0 100%);
|
|
clip-path: polygon(0 0,0 0,100% 0,100% 0,100% calc(100% - 15px),calc(100% - 15px) 100%,15px 100%,0 100%);
|
|
height: 40px;
|
|
font-size: 0.7rem;
|
|
line-height: 14px;
|
|
letter-spacing: 1.2px;
|
|
transition: .2s .1s;
|
|
background-image: linear-gradient(90deg,#1c1c1c,#6220fb);
|
|
border: 0 solid;
|
|
overflow: hidden;
|
|
}
|
|
|
|
button:hover {
|
|
cursor: pointer;
|
|
transition: all .3s ease-in;
|
|
padding-right: 30px;
|
|
padding-left: 30px;
|
|
}
|
|
</style>
|