blob: e3123f2faf32ccf98b74ee57178332a5fe68a175 (
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
|
/* base16-wofi (https://sr.ht/~knezi/base16-wofi)
* Base16 wofi template by knezi
* Green Screen scheme by Chris Kempson (http://chriskempson.com) */
window {
background-color: #001100;
color: #00bb00;
}
#entry:nth-child(odd) {
background-color: #001100;
}
#entry:nth-child(even) {
background-color: #003300;
}
#entry:selected {
background-color: #005500;
}
#input {
background-color: #003300;
color: #009900;
border-color: #005500;
}
#input:focus {
border-color: #007700;
}
|