blob: 2458501f33a4c4e65377ee8098508398b761d399 (
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
* Codeschool scheme by blockloop */
window {
background-color: #232c31;
color: #9ea7a6;
}
#entry:nth-child(odd) {
background-color: #232c31;
}
#entry:nth-child(even) {
background-color: #1c3657;
}
#entry:selected {
background-color: #2a343a;
}
#input {
background-color: #1c3657;
color: #84898c;
border-color: #2a343a;
}
#input:focus {
border-color: #a03b1e;
}
|