#e8e8e8
1.connectBtn { 2 width: 120px; 3 height: 40px; 4 border: none; 5 border-radius: 30px; 6 display: flex; 7 align-items: center; 8 justify-content: center; 9 gap: 7px; 10 color: white; 11 font-weight: 600; 12 background: linear-gradient( to right,#8be3fc,#576bff); 13 box-shadow: 0 20px 30px -7px rgba(97, 118, 238, 0.5); 14 transition: all 0.3s ease-in-out; 15 cursor: pointer; 16} 17 18.connectBtn:hover { 19 box-shadow: none; 20 transform: translate(0px, 2.2px); 21} 22 23.connectBtn:active { 24 transform: scale(0.96) translate(0px, 3.2px); 25}
493 views
493 views
Comments
MIT License