#212121
1.button { 2 width: 122px; 3 height: 60px; 4 padding: 18px 22px 18px 20px; 5 gap: 1px; 6 display: flex; 7 justify-content: center; 8 align-items: center; 9 background: #ff284818; 10 border-radius: 16px; 11 border: none; 12 cursor: pointer; 13} 14 15.label { 16 font-family: sans-serif; 17 height: 23px; 18 font-size: 19px; 19 line-height: 24px; 20 color: #FF2849; 21} 22 23.button:hover { 24 background: #ff284839; 25} 26 27.button:hover .svg-icon { 28 animation: pulse 0.7s linear infinite; 29} 30 31@keyframes pulse { 32 0% { 33 transform: scale(1); 34 } 35 36 50% { 37 transform: scale(1.13); 38 } 39 40 100% { 41 transform: scale(1); 42 } 43}
Comments
MIT License