зеркало из https://github.com/mozilla/gecko-dev.git
178 строки
2.2 KiB
CSS
178 строки
2.2 KiB
CSS
/* 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/. */
|
|
|
|
#moz-reader-content {
|
|
display: none;
|
|
font-size: 1em;
|
|
line-height: 1.6em;
|
|
}
|
|
|
|
#moz-reader-content.line-height1 {
|
|
line-height: 1em;
|
|
}
|
|
|
|
#moz-reader-content.line-height2 {
|
|
line-height: 1.2em;
|
|
}
|
|
|
|
#moz-reader-content.line-height3 {
|
|
line-height: 1.4em;
|
|
}
|
|
|
|
#moz-reader-content.line-height4 {
|
|
line-height: 1.6em;
|
|
}
|
|
|
|
#moz-reader-content.line-height5 {
|
|
line-height: 1.8em;
|
|
}
|
|
|
|
#moz-reader-content.line-height6 {
|
|
line-height: 2.0em;
|
|
}
|
|
|
|
#moz-reader-content.line-height7 {
|
|
line-height: 2.2em;
|
|
}
|
|
|
|
#moz-reader-content.line-height8 {
|
|
line-height: 2.4em;
|
|
}
|
|
|
|
#moz-reader-content.line-height9 {
|
|
line-height: 2.6em;
|
|
}
|
|
|
|
@media print {
|
|
p,
|
|
code,
|
|
pre,
|
|
blockquote,
|
|
ul,
|
|
ol,
|
|
li,
|
|
figure,
|
|
.wp-caption {
|
|
margin: 0 0 10px 0 !important;
|
|
}
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3 {
|
|
font-weight: bold;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 1.6em;
|
|
line-height: 1.25em;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1.2em;
|
|
line-height: 1.51em;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 1em;
|
|
line-height: 1.66em;
|
|
}
|
|
|
|
a:link {
|
|
text-decoration: underline;
|
|
font-weight: normal;
|
|
}
|
|
|
|
a:link,
|
|
a:link:hover,
|
|
a:link:active {
|
|
color: #0095dd;
|
|
}
|
|
|
|
a:visited {
|
|
color: #c2e;
|
|
}
|
|
|
|
* {
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
p,
|
|
code,
|
|
pre,
|
|
blockquote,
|
|
ul,
|
|
ol,
|
|
li,
|
|
figure,
|
|
.wp-caption {
|
|
margin: -10px -10px 20px -10px;
|
|
padding: 10px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
li {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
li > ul,
|
|
li > ol {
|
|
margin-bottom: -10px;
|
|
}
|
|
|
|
p > img:only-child,
|
|
p > a:only-child > img:only-child,
|
|
.wp-caption img,
|
|
figure img {
|
|
display: block;
|
|
}
|
|
|
|
img[moz-reader-center] {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.caption,
|
|
.wp-caption-text,
|
|
figcaption {
|
|
font-size: 0.9em;
|
|
line-height: 1.48em;
|
|
font-style: italic;
|
|
}
|
|
|
|
code,
|
|
pre {
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
blockquote {
|
|
padding: 0;
|
|
padding-inline-start: 16px;
|
|
}
|
|
|
|
ul,
|
|
ol {
|
|
padding: 0;
|
|
}
|
|
|
|
ul {
|
|
padding-inline-start: 30px;
|
|
list-style: disc;
|
|
}
|
|
|
|
ol {
|
|
padding-inline-start: 30px;
|
|
list-style: decimal;
|
|
}
|
|
|
|
/* Hide elements with common "hidden" class names */
|
|
.visually-hidden,
|
|
.visuallyhidden,
|
|
.hidden,
|
|
.invisible,
|
|
.sr-only {
|
|
display: none;
|
|
}
|