9 lines
181 B
CSS
9 lines
181 B
CSS
|
/*
|
||
|
For some reason DuckDuckGo doesn't make their various input
|
||
|
elements have a white foreground color, so this fixes that.
|
||
|
*/
|
||
|
|
||
|
body, input, select, textarea {
|
||
|
color: white;
|
||
|
}
|