blob: 7d9f449156482eb3245942ac6db09852d6e8967b (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
|
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;
}
|