66 lines
848 B
CSS
66 lines
848 B
CSS
window {
|
|
margin: 5px;
|
|
background-color: #181926;
|
|
opacity: 0.9;
|
|
border-radius: 10;
|
|
}
|
|
|
|
#outer-box {
|
|
margin: 5px;
|
|
/* border: 2px solid @maroon; */
|
|
background-color: #1e2030;
|
|
border-radius: 10;
|
|
}
|
|
|
|
#input {
|
|
margin: 2px;
|
|
border: 2px solid #b7bdf8;
|
|
background-color: #363a4f;
|
|
color: #f8f8f2;
|
|
font-size: 18px;
|
|
}
|
|
|
|
#inner-box {
|
|
/* margin: 5px; */
|
|
background-color: #24273a;
|
|
}
|
|
|
|
#scroll {
|
|
margin: 2px;
|
|
border: 2px solid #f5bde6;
|
|
background-color: #24273a;
|
|
font-size: 16px;
|
|
color: #f8f8f2;
|
|
border-radius: 10;
|
|
}
|
|
|
|
#scroll label {
|
|
margin: 2px 0px;
|
|
}
|
|
|
|
#entry {
|
|
margin: 0px 2px;
|
|
background-color: #24273a;
|
|
border: 2px;
|
|
}
|
|
#entry:selected {
|
|
background-color: #494d64;
|
|
/* border: 2px solid @mauve; */
|
|
}
|
|
|
|
#img {
|
|
margin: 5px;
|
|
}
|
|
#img:selected {
|
|
background-color: #494d64;
|
|
}
|
|
|
|
#text {
|
|
margin: 5px;
|
|
border: none;
|
|
color: @text;
|
|
}
|
|
#text:selected {
|
|
background-color: #494d64;
|
|
}
|