mirror of
https://git.sr.ht/~coasteen/dotfiles
synced 2025-11-04 14:47:38 +01:00
60 lines
1 KiB
CSS
60 lines
1 KiB
CSS
|
|
* {
|
||
|
|
font-family: "UbuntuMono", monospace;
|
||
|
|
font-size: 16px;
|
||
|
|
font-weight: bold;
|
||
|
|
}
|
||
|
|
|
||
|
|
window {
|
||
|
|
margin: 0px;
|
||
|
|
border: 2px solid #7f7f7f; /* Bright grey */
|
||
|
|
border-radius: 5px;
|
||
|
|
background-color: #1c1c1c; /* Dark grey */
|
||
|
|
font-family: monospace;
|
||
|
|
font-size: 12px;
|
||
|
|
}
|
||
|
|
|
||
|
|
#input {
|
||
|
|
margin: 5px;
|
||
|
|
border: 1px solid #1c1c1c; /* Dark grey */
|
||
|
|
color: #d3d3d3; /* Light grey */
|
||
|
|
background-color: #1c1c1c; /* Dark grey */
|
||
|
|
}
|
||
|
|
|
||
|
|
#input image {
|
||
|
|
color: #d3d3d3; /* Light grey */
|
||
|
|
}
|
||
|
|
|
||
|
|
#inner-box {
|
||
|
|
margin: 5px;
|
||
|
|
border: none;
|
||
|
|
background-color: #1c1c1c; /* Dark grey */
|
||
|
|
}
|
||
|
|
|
||
|
|
#outer-box {
|
||
|
|
margin: 5px;
|
||
|
|
border: none;
|
||
|
|
background-color: #1c1c1c; /* Dark grey */
|
||
|
|
}
|
||
|
|
|
||
|
|
#scroll {
|
||
|
|
margin: 0px;
|
||
|
|
border: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
#text {
|
||
|
|
margin: 5px;
|
||
|
|
border: none;
|
||
|
|
color: #d3d3d3; /* Light grey */
|
||
|
|
}
|
||
|
|
|
||
|
|
#entry:selected {
|
||
|
|
background-color: #7f7f7f; /* Bright grey */
|
||
|
|
font-weight: normal;
|
||
|
|
}
|
||
|
|
|
||
|
|
#text:selected {
|
||
|
|
background-color: #7f7f7f; /* Bright grey */
|
||
|
|
font-weight: normal;
|
||
|
|
}
|
||
|
|
|