46 lines
No EOL
605 B
CSS
46 lines
No EOL
605 B
CSS
* {
|
|
font-family: "JetBrainsMono Nerd Font Mono", monospace;
|
|
}
|
|
|
|
window {
|
|
background-color: #3B4252ac;
|
|
}
|
|
|
|
#input {
|
|
margin: 5px;
|
|
border-radius: 0px;
|
|
border: none;
|
|
background-color: #3B4252ac;
|
|
color: white;
|
|
}
|
|
|
|
#inner-box {
|
|
background-color: #383C4Aac;
|
|
}
|
|
|
|
#outer-box {
|
|
margin: 2px;
|
|
padding: 10px;
|
|
background-color: #383C4Aac;
|
|
}
|
|
|
|
#scroll {
|
|
margin: 5px;
|
|
}
|
|
|
|
#text {
|
|
padding: 4px;
|
|
color: white;
|
|
}
|
|
|
|
#entry:nth-child(even){
|
|
background-color: #404552ac;
|
|
}
|
|
|
|
#entry:selected {
|
|
background-color: #4C566Aac;
|
|
}
|
|
|
|
#text:selected {
|
|
background: transparent;
|
|
} |