Add wofi config

This commit is contained in:
Harzo 2023-05-25 22:16:16 +02:00
parent 736fda8111
commit ff0130ce2d
2 changed files with 75 additions and 0 deletions

3
.config/wofi/config Normal file
View File

@ -0,0 +1,3 @@
allow_images=true
# vim: ft=dosini

72
.config/wofi/style.css Normal file
View File

@ -0,0 +1,72 @@
* {
font-family: "Fira Sans", monospace;
font-size: 1rem;
outline: none;
}
window {
background: none;
border-radius: 30px;
}
#input {
margin: 5px;
border-radius: 3px;
border: 1px solid #8fbcbb;
background-color: #4c566a;
color: #eceff4;
}
#inner-box {
background-color: none;
border: none;
}
#outer-box {
margin: 2px;
padding: 10px;
background-color: #2e3440;
border-radius: 15px;
}
#scroll {
margin: 5px;
}
#text {
padding: 4px;
color: #eceff4;
}
#entry {
border-radius: 0px;
background-color: #434c5e;
}
#entry:first-child {
border-radius: 5px 5px 0 0;
}
#entry:last-child {
border-radius: 0 0 5px 5px;
}
#entry:only-child {
border-radius: 5px;
}
#entry:nth-child(even){
background-color: #3b4252;
}
#entry:selected {
background-color: #8fbcbb;
}
#text:selected {
color: #2e3440;
}
#img {
background: transparent;
}