#e8e8e8
1.signupBtn { 2 width: 120px; 3 height: 40px; 4 border-radius: 30px; 5 border: none; 6 display: flex; 7 align-items: center; 8 justify-content: flex-start; 9 padding-left: 13px; 10 gap: 9px; 11 color: white; 12 background: linear-gradient(to right,rgb(255, 128, 187),rgb(198, 128, 255)); 13 position: relative; 14 cursor: pointer; 15 box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.212); 16 font-weight: 600; 17} 18 19.arrow { 20 position: absolute; 21 right: 7.5px; 22 background-color: rgb(255, 255, 255); 23 width: 30px; 24 height: 30px; 25 display: flex; 26 align-items: center; 27 justify-content: center; 28 border-radius: 30px; 29 transition: all .5s ease; 30} 31 32.signupBtn:hover .arrow { 33 width: calc(120px - (7.5px)*2); 34} 35 36
Comments
MIT License