blob: dd2afaba9ff570c9b484fb9bbe578940cb3bdedd (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
/*
* Font sizes
*/
* {
font-size : $fontsize-base$ ! important;
}
SMALL, SUB, SUP {
font-size : $fontsize-small-1$ ! important;
}
BIG {
font-size : $fontsize-large-1$ ! important;
}
H1, H1 A {
font-size : $fontsize-large-5$ ! important;
}
H2, H2 A {
font-size : $fontsize-large-4$ ! important;
}
H3, H3 A {
font-size : $fontsize-large-3$ ! important;
}
H4, H4 A {
font-size : $fontsize-large-2$ ! important;
}
H5, H5 A {
font-size : $fontsize-large-1$ ! important;
}
/*
* Colors
*/
* {
background : $background-color$ ! important;
color : $foreground-color$
$force-color$;
}
BODY {
color : $foreground-color$ ! important;
}
TABLE, TD {
border-color : $foreground-color$;
}
/*
* Font family
*/
* {
font-family : $font-family$
$force-font$;
}
/*
* Images
*/
IMG {
$display-images$;
}
BODY {
$display-background$;
}
|