47 lines
529 B
CSS
47 lines
529 B
CSS
* {
|
|
border-radius: 4px;
|
|
font-family: monospace;
|
|
}
|
|
|
|
#input {
|
|
margin: 2px;
|
|
background-color: #14171d;
|
|
color: #c7c6c3;
|
|
}
|
|
|
|
#inner-box {
|
|
background-color: #14171d;
|
|
}
|
|
|
|
#outer-box {
|
|
padding: 2px;
|
|
background-color: #4d4754;
|
|
}
|
|
|
|
#scroll {
|
|
margin: 2px;
|
|
}
|
|
|
|
#text {
|
|
padding: 2px;
|
|
color: #c7c6c3;
|
|
}
|
|
|
|
#entry {
|
|
border-radius: 0px;
|
|
}
|
|
|
|
#entry:nth-child(even){
|
|
background-color: #2c2b3b;
|
|
}
|
|
|
|
#entry:selected {
|
|
border-radius: 2px;
|
|
background-color: #789ebf;
|
|
}
|
|
|
|
#text:selected {
|
|
background: transparent;
|
|
color: #14171d;
|
|
}
|