ThunderAI/popup/mzta-popup.css

120 lines
No EOL
2 KiB
CSS

body {
background-color: #FAFAFA;
color:black;
font-size: 14px;
padding: 1px;
margin:3px;
}
#mzta_search_banner{
background-color: #FAFAFA;
color:black;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: relative;
height: fit-content;
width: 15em;
max-height: 23em;
min-height: 1em;
padding: 0;
}
#mzta_search_input{
width: 12em;
position: fixed;
top:0;
left:0;
width: -moz-available;
z-index: 1001;
font-size: 13px;
}
#_spacer_div{
width: 100%;
height: 2.2em;
}
#mzta_autocomplete-items {
border: none;
z-index: 1000;
background-color: #FAFAFA;
width: 100%;
overflow-y: auto;
padding: 0;
overflow-x: hidden;
display: none;
}
#mzta_sending_prompt{
display: none;
}
.mzta_autocomplete-item {
padding: 4px;
cursor: pointer;
}
.mzta_autocomplete-item:hover {
background-color: #e9e9e9;
}
.mzta_autocomplete-item-active {
background-color: #e9e9e9;
}
.special_prompt{
background-color: #cfe9ff;
}
#ask_chatgpt_web_perm{
display: none;
max-width: 20em;
background-color: red;
color: white;
padding: 10px;
border-radius: 5px;
font-size: 18px;
font-weight: bold;
text-align: center;
cursor: pointer;
}
@media (prefers-color-scheme: dark) {
body{
background-color: #2c2c2c;
color: #ffffff;
}
#mzta_search_input {
background-color: #2c2c2c;
color: #ffffff;
}
#mzta_search_banner{
background-color: #2c2c2c;
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;
}
.special_prompt{
background-color: #353542;
}
}