this repo has no description
1input[type="text"]{ 2 outline: none; 3 background: none; 4 border: none; 5 border-bottom: 2px solid #525252; 6 font-size: 15px; 7 font-family: Rubik, 'Courier New'; 8 color: #fff; 9 width: 400px; 10} 11 12div[input-dropdown]{ 13 position: absolute; 14 width: fit-content; 15 16 margin-top: 5px; 17 padding: 10px; 18 float: left; 19 border-radius: 5px; 20 21 max-height: 300px; 22 overflow-y: auto; 23 24 background: #525252; 25 z-index: 50; 26} 27 28div[input-dropdown] > div{ 29 transition: 0.25s; 30} 31 32div[input-dropdown] > div:hover{ 33 color: #aaa; 34} 35 36.suggestion-selected{ 37 color: #aaa; 38}