blob: 5cfaf6c8b0947a60271d6ca2540d958c604dfb14 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
window {
background: #efefef;
color: #4a484d;
font-family: Noto Sans;
font-size: 11pt;
border: 1px solid #5e4b4f;
}
#input {
padding: 2px;
margin: 5px;
border: 0;
border-radius: 0;
}
#input:active {
border: 0;
}
#inner-box {
}
#outer-box {
}
#scroll {
padding: 2px;
margin: 5px;
}
#text {
color: #4a484d;
}
#entry:selected #text{
color: #ffffff;
}
#entry:selected {
background: #2d45b0;
}
|