27 lines
341 B
CSS
27 lines
341 B
CSS
window {
|
|
margin: 0px;
|
|
border: 1px solid #666;
|
|
background-color: #222;
|
|
color: white;
|
|
font-family: "Fira Mono";
|
|
}
|
|
|
|
#input {
|
|
padding: 5px;
|
|
border: none;
|
|
background-color: #333;
|
|
color: white;
|
|
}
|
|
|
|
#inner-box, #input, #outer-box, #text {
|
|
margin: 5px;
|
|
}
|
|
|
|
#scroll {
|
|
margin: 0px;
|
|
}
|
|
|
|
#entry:selected {
|
|
background-color: #555;
|
|
}
|