55 lines
671 B
CSS
55 lines
671 B
CSS
|
window {
|
||
|
margin: 0px;
|
||
|
/*border: 1px solid #79b5b3;*/
|
||
|
background-color: #1d1b2b;
|
||
|
border-radius: 5px;
|
||
|
}
|
||
|
|
||
|
#input {
|
||
|
margin: 5px;
|
||
|
border: none;
|
||
|
color: #d5d8ed;
|
||
|
border-radius: 5px;
|
||
|
background-color: #44475a;
|
||
|
}
|
||
|
|
||
|
#input:selected {
|
||
|
border: inherit;
|
||
|
}
|
||
|
|
||
|
#inner-box {
|
||
|
margin: 5px;
|
||
|
border: none;
|
||
|
background-color: inherit;
|
||
|
}
|
||
|
|
||
|
#outer-box {
|
||
|
margin: 5px;
|
||
|
border: none;
|
||
|
background-color: inherit;
|
||
|
}
|
||
|
|
||
|
#scroll {
|
||
|
margin: 0px;
|
||
|
border: none;
|
||
|
}
|
||
|
|
||
|
#text {
|
||
|
margin: 5px;
|
||
|
border: none;
|
||
|
color: #d5d8ed;
|
||
|
}
|
||
|
|
||
|
#img {
|
||
|
background-color: transparent;
|
||
|
}
|
||
|
|
||
|
#entry {
|
||
|
border: none;
|
||
|
}
|
||
|
|
||
|
#entry:selected {
|
||
|
background-color: #44475a;
|
||
|
border-radius: 5px;
|
||
|
}
|