mirror of
https://github.com/Codiad/Codiad.git
synced 2026-03-22 08:56:50 +01:00
19 lines
342 B
CSS
Executable File
19 lines
342 B
CSS
Executable File
/* Autocomplete */
|
|
|
|
#autocomplete {
|
|
display: none;
|
|
position: absolute;
|
|
width: 150px;
|
|
max-height: 200px;
|
|
background-color: #2E2E2E;
|
|
border: 3px solid #666666;
|
|
padding: 3px;
|
|
z-index: 9999;
|
|
overflow: auto;
|
|
}
|
|
|
|
.active-suggestion {
|
|
/* Hey this is just for testing ;-) */
|
|
color: red;
|
|
}
|