blob: fd35cddbd7920ed0af22015abcb737976cf15244 (
plain) (
blame)
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
|
* {
border: none;
border-radius: 3px;
color: #C5C8C6;
font-size: 22px;
font-family: 'SF Pro'
}
#outer-box {
border: 3px solid #FAA14F;
}
#window {
background-color: rgba(43, 48, 59, 0.9);
}
#input {
/* Hack to just inherit from ‘#window’ */
background-color: rgba(0, 0, 0, 0);
border-radius: 0;
border-bottom: 3px solid #FAA14F;
}
#entry, #input {
padding: .25em .5em;
}
#entry:selected {
background-color: rgba(65, 72, 89, 0.9);
}
|