50 lines
665 B
CSS
50 lines
665 B
CSS
window {
|
|
margin: 5px;
|
|
border: none;
|
|
background-color: transparent;
|
|
}
|
|
|
|
#input {
|
|
margin: 5px;
|
|
padding: 10px;
|
|
border: none;
|
|
background-color: rgba(0, 0, 0, 0.8);
|
|
}
|
|
|
|
#inner-box {
|
|
margin: 5px;
|
|
padding: 10px;
|
|
border: none;
|
|
border-radius: 25px;
|
|
background-color: rgba(0, 0, 0, 0.8);
|
|
}
|
|
|
|
#outer-box {
|
|
margin: 0;
|
|
border: none;
|
|
background-color: transparent;
|
|
}
|
|
|
|
#scroll {
|
|
margin: 0;
|
|
border: none;
|
|
background-color: transparent;
|
|
}
|
|
|
|
#text {
|
|
margin: 0;
|
|
border: none;
|
|
background-color: transparent;
|
|
}
|
|
|
|
#entry:selected {
|
|
background-color: transparent;
|
|
outline: none;
|
|
}
|
|
|
|
#text:selected {
|
|
color: #33ffbb;
|
|
font-weight: bold;
|
|
background-color: transparent;
|
|
}
|