#e8e8e8
1.submitBtn { 2 width: 120px; 3 height: 40px; 4 border-radius: 30px; 5 border: none; 6 box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.13); 7 display: flex; 8 align-items: center; 9 justify-content: center; 10 gap: 8px; 11 font-weight: 600; 12 cursor: pointer; 13 color: white; 14 background: linear-gradient(to left,rgb(230, 35, 0),rgb(255, 174, 0)); 15 letter-spacing: 0.7px; 16} 17 18.submitBtn:hover .arrow { 19 animation: slide-in-left 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; 20} 21 22@keyframes slide-in-left { 23 0% { 24 transform: translateX(-10px); 25 opacity: 0; 26 } 27 28 100% { 29 transform: translateX(0px); 30 opacity: 1; 31 } 32} 33 34.submitBtn:active { 35 transform: scale(0.97); 36}
753 views
753 views
Comments
MIT License