#e8e8e8
1button { 2 width: fit-content; 3 min-width: 100px; 4 height: 45px; 5 padding: 8px; 6 border-radius: 5px; 7 border: 2.5px solid #E0E1E4; 8 box-shadow: 0px 0px 20px -20px; 9 cursor: pointer; 10 background-color: white; 11 transition: all 0.2s ease-in-out 0ms; 12 user-select: none; 13 font-family: 'Poppins', sans-serif; 14} 15 16button:hover { 17 background-color: #F2F2F2; 18 box-shadow: 0px 0px 20px -18px; 19} 20 21button:active { 22 transform: scale(0.95); 23}
17K views
17K views
Comments
MIT License