50 lines
594 B
CSS
50 lines
594 B
CSS
* {
|
|
font-family: "Hack", monospace;
|
|
}
|
|
|
|
window {
|
|
background-color: #fbf1c7;
|
|
}
|
|
|
|
#input {
|
|
margin: 5px;
|
|
border: none;
|
|
background-color: #fbf1c7;
|
|
color: #3c3836;
|
|
}
|
|
|
|
#inner-box {
|
|
margin: 5px
|
|
border: none
|
|
background-color: #fbf1c7;
|
|
}
|
|
|
|
#outer-box {
|
|
margin: 2px;
|
|
padding: 2px;
|
|
background-color: #7c6f64;
|
|
}
|
|
|
|
#scroll {
|
|
color: #7c6f64;
|
|
}
|
|
|
|
#entry:nth-child(odd){
|
|
background-color: #fbf1c7;
|
|
color: #3c3836;
|
|
}
|
|
|
|
#entry:nth-child(even){
|
|
background-color: #f2e5bc;
|
|
color: #3c3836;
|
|
}
|
|
|
|
#entry:selected {
|
|
background-color: #d79921;
|
|
color: #fbf1c7;
|
|
}
|
|
|
|
#text:selected {
|
|
background: transparent;
|
|
}
|