summaryrefslogtreecommitdiffstats
path: root/mobile/android/themes/core/aboutReader.css
blob: 2df2d1ff6206540f84c46f55356c268940cc6b03 (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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
 * You can obtain one at http://mozilla.org/MPL/2.0/. */

html {
  -moz-text-size-adjust: none;
}

body {
  padding: 20px;
  transition-property: background-color, color;
  transition-duration: 0.4s;
  max-width: 35em;
  margin-left: auto;
  margin-right: auto;
}

body.light {
  background-color: #ffffff;
  color: #222222;
}

body.dark {
  background-color: #222222;
  color: #eeeeee;
}

body.sans-serif {
  font-family: sans-serif;
}

body.serif {
  font-family: serif;
}

#container.font-size1 {
  font-size: 10px;
}

#container.font-size2 {
  font-size: 12px;
}

#container.font-size3 {
  font-size: 14px;
}

#container.font-size4  {
  font-size: 16px;
}

#container.font-size5 {
  font-size: 18px;
}

#container.font-size6 {
  font-size: 20px;
}

#container.font-size7 {
  font-size: 22px;
}

#container.font-size8 {
  font-size: 24px;
}

#container.font-size9 {
  font-size: 26px;
}

/* Override some controls and content styles based on color scheme */

body.light > .container > .header > .domain {
  color: #ee7600;
  border-bottom-color: #d0d0d0; 
}

body.light > .container > .header > h1 {
  color: #222222;
}

body.light > .container > .header > .credits {
  color: #898989;
}

body.dark > .container > .header > .domain {
  color: #ff9400;
  border-bottom-color: #777777; 
}

body.dark > .container > .header > h1 {
  color: #eeeeee;
}

body.dark > .container > .header > .credits {
  color: #aaaaaa;
}

body.light > .container > .content .caption,
body.light > .container > .content .wp-caption-text,
body.light > .container > .content figcaption {
  color: #898989;
}

body.dark > .container > .content .caption,
body.dark > .container > .content .wp-caption-text,
body.dark > .container > .content figcaption {
  color: #aaaaaa;
}

body.light > .container > .content blockquote {
  color: #898989 !important;
  border-left-color: #d0d0d0 !important;
}

body.dark > .container > .content blockquote {
  color: #aaaaaa !important;
  border-left-color: #777777 !important;
}