#e8e8e8
1.input { 2 border: none; 3 padding: 1rem; 4 border-radius: 1rem; 5 background: #e8e8e8; 6 box-shadow: 20px 20px 60px #c5c5c5, 7 -20px -20px 60px #ffffff; 8 transition: 0.3s; 9} 10 11.input:focus { 12 outline-color: #e8e8e8; 13 background: #e8e8e8; 14 box-shadow: inset 20px 20px 60px #c5c5c5, 15 inset -20px -20px 60px #ffffff; 16 transition: 0.3s; 17}
Comments
MIT License