71 lines
997 B
CSS
71 lines
997 B
CSS
/* Wofi Theme - passend zur kitty-Config
|
|
Installation: nach ~/.config/wofi/style.css kopieren
|
|
*/
|
|
|
|
* {
|
|
font-family: monospace;
|
|
font-size: 14px;
|
|
}
|
|
|
|
window {
|
|
margin: 0px;
|
|
border: 2px solid #3182bd;
|
|
border-radius: 12px;
|
|
background-color: #0c0d0e;
|
|
color: #b7b8b9;
|
|
}
|
|
|
|
#input {
|
|
margin: 10px;
|
|
padding: 10px;
|
|
border: none;
|
|
border-radius: 8px;
|
|
background-color: #1a1b1c;
|
|
color: #b7b8b9;
|
|
caret-color: #3182bd;
|
|
}
|
|
|
|
#input:focus {
|
|
outline: none;
|
|
border: 1px solid #3182bd;
|
|
}
|
|
|
|
#inner-box {
|
|
margin: 5px;
|
|
padding: 5px;
|
|
background-color: transparent;
|
|
}
|
|
|
|
#outer-box {
|
|
margin: 5px;
|
|
padding: 10px;
|
|
background-color: transparent;
|
|
}
|
|
|
|
#scroll {
|
|
margin: 5px;
|
|
}
|
|
|
|
#text {
|
|
margin: 5px;
|
|
color: #b7b8b9;
|
|
}
|
|
|
|
#entry {
|
|
padding: 8px;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
#entry:selected {
|
|
background-color: #737475;
|
|
}
|
|
|
|
#entry:selected #text {
|
|
color: #fcfdfe;
|
|
font-weight: bold;
|
|
}
|
|
|
|
#entry image {
|
|
margin-right: 10px;
|
|
}
|