-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuserContent.css
43 lines (38 loc) · 928 Bytes
/
userContent.css
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
39
40
41
42
43
/* Note that for every change, Firefox needs to be restarted. */
/* Replace font with another. Due to some terrible font matching done in
* Firefox, it does not use the correct serif fallback font. So instead force
* some to use my fallback explicitly.
*/
/*
@font-face {
font-family: 'Liberation Serif';
src: local('Charis SIL');
}
@font-face {
font-family: Georgia;
src: local('Charis SIL');
}
*/
/* Dark theme screws up input/textarea colours because of lazy webprogrammers */
/* Disabled unless necessary since it breaks checkboxes in more recent Firefox
input {
-moz-appearance: none !important;
background-color: white;
color: black;
}
textarea {
-moz-appearance: none !important;
background-color: white;
color: black;
}
*/
@-moz-document domain(ycombinator.com) {
div.comment {
width: 30em;
}
}
@-moz-document domain(reddit.com) {
div.Comment {
max-width: 30em !important;
}
}