@LilaRest
#neumorphism#skeuomorphism#animation#minimalist#social#button#like#heart#realistic#favorite
#e8e8e8452 views
1button { 2 display: flex; 3 justify-content: center; 4 align-items: center; 5 padding: 20px 22px 20px 22px; 6 box-shadow: rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset; 7 background-color: #e8e8e8; 8 border-color: #ffe2e2; 9 border-style: solid; 10 border-width: 9px; 11 border-radius: 35px; 12 transition: transform 400ms cubic-bezier(.68,-0.55,.27,2.5), 13 border-color 400ms ease-in-out, 14 background-color 400ms ease-in-out; 15 word-spacing: -2px; 16} 17 18@keyframes movingBorders { 19 0% { 20 border-color: #fce4e4; 21 } 22 23 50% { 24 border-color: #ffd8d8; 25 } 26 27 90% { 28 border-color: #fce4e4; 29 } 30} 31 32button:hover { 33 background-color: #eee; 34 transform: scale(105%); 35 animation: movingBorders 3s infinite; 36} 37 38button svg { 39 fill: rgb(255, 110, 110); 40} 41 42@keyframes beatingHeart { 43 0% { 44 transform: scale(1); 45 } 46 47 15% { 48 transform: scale(1.15); 49 } 50 51 30% { 52 transform: scale(1); 53 } 54 55 45% { 56 transform: scale(1.15); 57 } 58 59 60% { 60 transform: scale(1); 61 } 62} 63 64button:hover svg { 65 transform: scale(105%); 66 border-color: #ffd8d8; 67 animation: beatingHeart 1.2s infinite; 68} 69
LilaRest
Lila Rest
MIT License