47 lines
1.4 KiB
CSS
47 lines
1.4 KiB
CSS
|
/* Notes below regarding the purpose of each setting is true to the best of my knowledge. */
|
||
|
|
||
|
#input {
|
||
|
margin: 10px; /* how much padding there is around the input box */
|
||
|
border: none; /* border around the input box */
|
||
|
background-color: #453e3d; /* background color of the text input box itself */
|
||
|
color: #ffffff; /* text color as you type inside the input box */
|
||
|
}
|
||
|
|
||
|
#inner-box {
|
||
|
margin: 5px;
|
||
|
border: none; /* horizontal bar that appears above the search results */
|
||
|
background-color: #1f1f1f; /* background color behind the search results */
|
||
|
color: #ffffff; /* text color of each search result */
|
||
|
}
|
||
|
|
||
|
#outer-box {
|
||
|
margin: 5px; /* margin between the outer edges of the main window and its contents inside */
|
||
|
border: none; /* border around all the internal window components */
|
||
|
background-color: #1f1f1f; /* background color of entire inner window */
|
||
|
|
||
|
}
|
||
|
|
||
|
#text {
|
||
|
margin: 5px;
|
||
|
border: none; /* border around each individual item within the search results */
|
||
|
background-color: trans; /* background behind each individual item within the search results */
|
||
|
color: ffffff;
|
||
|
}
|
||
|
|
||
|
/* Remove the search icon */
|
||
|
#input > image.left {
|
||
|
-gtk-icon-transform:scaleX(0);
|
||
|
}
|
||
|
|
||
|
#scroll {
|
||
|
margin: 5px;
|
||
|
border: 2px solid #1f1f1f;
|
||
|
background-color: #1f1f1f; /* background color behind the search slider */
|
||
|
}
|
||
|
|
||
|
window {
|
||
|
margin: 15px;
|
||
|
border: 3px solid green; /* border around the entire window */
|
||
|
background-color: #1f1f1f;
|
||
|
}
|