blob: 59184f4b8cfb1bd79a5ef155633d5b16cb9a443d (
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
|
window {
background: #eee8d5;
color: #657b83;
font-family: SauceCodePro Nerd Font;
font-size: 10pt;
}
#input {
padding: 2px;
margin: 5px;
border: 0;
border-radius: 0;
color: #657b83;
background: #fdf6e3;
}
#input:active {
border: 0;
}
#inner-box {
}
#outer-box {
}
#scroll {
padding: 2px;
margin: 5px;
}
#text {
}
#entry:selected{
background: #93a1a1;
color: #eee8d5;
}
|