ThunderAI/popup/mzta-popup.css

87 lines
No EOL
1.5 KiB
CSS

body {
background-color: rgb(122, 180, 255);
font-size: 14px;
}
#mzta_search_banner{
background-color: rgb(122, 180, 255);
color:black;
width: fit-content;
height: fit-content;
display: flex;
justify-content: center;
align-items: center;
position: relative;
width: 10em;
max-height: 11em;
min-height: 1em;
padding: 0;
overflow-y: auto;
}
#mzta_search_input{
width: 12em;
position: fixed;
top:0;
left:0;
width: -moz-available;
z-index: 1001;
font-size: 13px;
}
#mzta_autocomplete-items {
position: relative;
top: 1.5em;
left: 0em;
border: none;
z-index: 1000;
background-color: #fff;
width: 10em;
}
.mzta_autocomplete-item {
padding: 4px;
cursor: pointer;
}
.mzta_autocomplete-item:hover {
background-color: #e9e9e9;
}
.mzta_autocomplete-item-active {
background-color: #e9e9e9;
}
@media (prefers-color-scheme: dark) {
body{
background-color: #27272a;
}
#mzta_search_input {
background-color: #27272a;
color: #ffffff;
}
#mzta_search_banner{
background-color: #27272a;
color:#ffffff;
}
#mzta_autocomplete-items {
background-color: #2c2c2c;
}
.mzta_autocomplete-item {
color: #ffffff;
}
.mzta_autocomplete-item:hover {
background-color: #444444;
}
.mzta_autocomplete-item-active {
background-color: #444444;
}
}