#e8e8e8
1.InputContainer { 2 width: 210px; 3 height: 50px; 4 display: flex; 5 align-items: center; 6 justify-content: center; 7 background: linear-gradient(to bottom,rgb(227, 213, 255),rgb(255, 231, 231)); 8 border-radius: 30px; 9 overflow: hidden; 10 cursor: pointer; 11 box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.075); 12} 13 14.input { 15 width: 200px; 16 height: 40px; 17 border: none; 18 outline: none; 19 caret-color: rgb(255, 81, 0); 20 background-color: rgb(255, 255, 255); 21 border-radius: 30px; 22 padding-left: 15px; 23 letter-spacing: 0.8px; 24 color: rgb(19, 19, 19); 25 font-size: 13.4px; 26} 27
Comments
MIT License