add images that are referenced somewhere but not actually present
[themes.git] / LCARStrek / global / aboutReaderContent.css
CommitLineData
a2676cef
RK
1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
3 * You can obtain one at http://mozilla.org/MPL/2.0/. */
4
5#moz-reader-content {
6 display: none;
7 font-size: 1em;
8 line-height: 1.6em;
9}
10
11h1,
12h2,
13h3 {
14 font-weight: bold;
15}
16
17h1 {
18 font-size: 1.6em;
19 line-height: 1.25em;
20}
21
22h2 {
23 font-size: 1.2em;
24 line-height: 1.51em;
25}
26
27h3 {
28 font-size: 1em;
29 line-height: 1.66em;
30}
31
32a {
33 text-decoration: underline;
34 font-weight: normal;
35}
36
37a,
38a:visited,
39a:hover,
40a:active {
41 color: #0095dd;
42}
43
44* {
45 max-width: 100%;
46 height: auto;
47}
48
49p,
50code,
51pre,
52blockquote,
53ul,
54ol,
55li,
56figure,
57.wp-caption {
7729765c
RK
58 margin: -10px -10px 20px -10px;
59 padding: 10px;
60 border-radius: 5px;
a2676cef
RK
61}
62
63p > img:only-child,
64p > a:only-child > img:only-child,
65.wp-caption img,
66figure img {
67 display: block;
68}
69
70img[moz-reader-center] {
71 margin-left: auto;
72 margin-right: auto;
73}
74
75.caption,
76.wp-caption-text,
77figcaption {
78 font-size: 0.9em;
79 line-height: 1.48em;
80 font-style: italic;
81}
82
83code,
84pre {
85 white-space: pre-wrap;
86}
87
88blockquote {
89 padding: 0;
90 -moz-padding-start: 16px;
91}
92
93ul,
94ol {
95 padding: 0;
96}
97
98ul {
99 -moz-padding-start: 30px;
100 list-style: disc;
101}
102
103ol {
104 -moz-padding-start: 30px;
105 list-style: decimal;
106}
107
108/* Hide elements with common "hidden" class names */
109.visually-hidden,
110.visuallyhidden,
111.hidden,
112.invisible,
113.sr-only {
114 display: none;
115}