#e8e8e8
1/* credits to uiverse.io/profile/eirikvold */ 2button { 3 font-family: inherit; 4 font-size: 18px; 5 background: rgb(24,119,240); 6 background: linear-gradient(90deg, rgba(24,119,240,1) 0%, rgba(29,37,253,1) 50%, rgba(11,9,140,1) 100%); 7 color: white; 8 padding: 0.8em 1.2em; 9 display: grid; 10 grid-template-columns: auto 0fr; 11 align-items: center; 12 border: none; 13 border-radius: 16px; 14 box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2); 15 transition: all 0.3s; 16} 17 18button:hover { 19 cursor: pointer; 20 transform: translateY(-3px); 21 box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3); 22 grid-template-columns: auto 1fr; 23} 24 25button:active { 26 transform: scale(0.95); 27 box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2); 28} 29 30button span { 31 display: block; 32 margin-left: 0.4em; 33 transition: all 0.3s; 34} 35 36button svg { 37 transition: all 0.3s; 38} 39 40button .svg-wrapper { 41 display: flex; 42 align-items: center; 43 justify-content: center; 44 width: 30px; 45 height: 30px; 46 border-radius: 50%; 47 background-color: rgba(255, 255, 255, 0.2); 48 transition: all 0.3s; 49} 50 51button:hover .svg-wrapper { 52 background-color: rgba(255, 255, 255, 0.5); 53 margin-right: 0.5em; 54 animation: bounce 1.2s ease-in-out; 55} 56 57.text { 58 overflow: hidden; 59} 60 61@keyframes bounce { 62 0% { 63 translate: 0; 64 } 65 66 50% { 67 translate: 0 -8px; 68 } 69 70 100% { 71 translate: 0; 72 } 73} 74 75
Comments
MIT License