50 lines
701 B
CSS
50 lines
701 B
CSS
|
window {
|
||
|
margin: 0px;
|
||
|
border: 1px solid #458588;
|
||
|
background-color: #010101;
|
||
|
}
|
||
|
|
||
|
#input {
|
||
|
margin: 5px;
|
||
|
border: none;
|
||
|
color: #010101;
|
||
|
background-color: #EBDBB2;
|
||
|
}
|
||
|
|
||
|
#inner-box {
|
||
|
margin: 5px;
|
||
|
border: none;
|
||
|
background-color: #010101;
|
||
|
}
|
||
|
|
||
|
#outer-box {
|
||
|
margin: 5px;
|
||
|
border: none;
|
||
|
background-color: #010101;
|
||
|
}
|
||
|
|
||
|
#scroll {
|
||
|
margin: 0px;
|
||
|
border: none;
|
||
|
}
|
||
|
|
||
|
#text {
|
||
|
margin: 5px;
|
||
|
border: none;
|
||
|
color: #EBDBB2;
|
||
|
background: none;
|
||
|
}
|
||
|
|
||
|
#text:selected {
|
||
|
color: #010101;
|
||
|
}
|
||
|
|
||
|
#img {
|
||
|
background: none;
|
||
|
}
|
||
|
|
||
|
#entry:selected {
|
||
|
background-color: #EBDBB2;
|
||
|
}
|
||
|
|