40 lines
533 B
CSS
40 lines
533 B
CSS
* {
|
|
border-radius:4px;
|
|
border: none;
|
|
}
|
|
|
|
window {
|
|
font-size: 30px;
|
|
font-family: "JetBrainsMono Nerd Font", monospace;
|
|
color: #ffffff;
|
|
background-color: rgba(40, 44, 52, 0.98);
|
|
}
|
|
|
|
#entry{
|
|
padding: 0.25em;
|
|
}
|
|
|
|
#entry:selected {
|
|
background-color: #bbccdd;
|
|
color: white;
|
|
border-radius:0px;
|
|
}
|
|
|
|
#expander-box {
|
|
background-color: rgba(40, 44, 52, 0.9);
|
|
}
|
|
|
|
#text:selected {
|
|
color: #333333;
|
|
}
|
|
|
|
#input{
|
|
background-color: rgba(40, 44, 52, 0.5);
|
|
color: cyan;
|
|
padding: 0.3em;
|
|
}
|
|
|
|
image{
|
|
margin-left: 0.25em;
|
|
margin-right: 0.25em;
|
|
}
|