mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
36 lines
646 B
HTML
36 lines
646 B
HTML
<button> Button
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by niat786 - Tags: button */
|
|
button {
|
|
border: none;
|
|
color: #fff;
|
|
background-image: linear-gradient(30deg, #0400ff, #4ce3f7);
|
|
border-radius: 20px;
|
|
background-size: 100% auto;
|
|
font-family: inherit;
|
|
font-size: 17px;
|
|
padding: 0.6em 1.5em;
|
|
}
|
|
|
|
button:hover {
|
|
background-position: right center;
|
|
background-size: 200% auto;
|
|
-webkit-animation: pulse 2s infinite;
|
|
animation: pulse512 1.5s infinite;
|
|
}
|
|
|
|
@keyframes pulse512 {
|
|
0% {
|
|
box-shadow: 0 0 0 0 #05bada66;
|
|
}
|
|
|
|
70% {
|
|
box-shadow: 0 0 0 10px rgb(218 103 68 / 0%);
|
|
}
|
|
|
|
100% {
|
|
box-shadow: 0 0 0 0 rgb(218 103 68 / 0%);
|
|
}
|
|
}
|
|
</style>
|