aboutsummaryrefslogtreecommitdiff
path: root/arc-firefox-theme/chrome/global/aboutReader.css
blob: 8121e5f9de6649ab361fd693f985e7ca18b471fc (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
121
122
123
124
/* 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/. */

body {
  padding: 64px 0;
}

@media (max-width: 785px) {
  body {
    padding-top: 64px;
    -moz-padding-end: 0;
    padding-bottom: 64px;
    -moz-padding-start: 51px;
  }
}

body.loaded {
  transition: color 0.4s, background-color 0.4s;
}

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

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

body.dark *::-moz-selection {
  background-color: #FFFFFF;
  color: #0095DD;
}
body.dark a::-moz-selection {
  color: #DD4800;
}

body.sepia {
  color: #5b4636;
  background-color: #f4ecd8;
}

body.sans-serif,
body.sans-serif .remove-button {
  font-family: Helvetica, Arial, sans-serif;
}

body.serif,
body.serif .remove-button  {
  font-family: Georgia, "Times New Roman", serif;
}

#container {
  max-width: 30em;
  margin: 0 auto;
}

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

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

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

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

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

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

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

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

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

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

body.light > .container > .header > .domain {
  border-bottom-color: #333333 !important;
}

body.sepia > .container > .header > .domain {
  border-bottom-color: #5b4636 !important;
}

body.dark > .container > .header > .domain {
  border-bottom-color: #eeeeee !important;
}

body.sepia > .container > .footer {
  background-color: #dedad4 !important;
}

body.light blockquote {
  -moz-border-start: 2px solid #333333 !important;
}

body.sepia blockquote {
  -moz-border-start: 2px solid #5b4636 !important;
}

body.dark blockquote {
  -moz-border-start: 2px solid #eeeeee !important;
}