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
12input[type="number"]{
13 outline: none;
14 background: none;
15 border: none;
16 border-bottom: 2px solid #525252;
17 font-size: 15px;
18 font-family: Rubik, 'Courier New';
19 color: #fff;
20 width: 400px;
21}
22
23div[input-dropdown]{
24 position: absolute;
25 width: fit-content;
26
27 margin-top: 5px;
28 padding: 10px;
29 float: left;
30 border-radius: 5px;
31
32 max-height: 300px;
33 overflow-y: auto;
34
35 background: #525252;
36 z-index: 50;
37}
38
39div[input-dropdown] > div{
40 transition: 0.25s;
41}
42
43div[input-dropdown] > div:hover{
44 color: #aaa;
45}
46
47.suggestion-selected{
48 color: #aaa;
49}