mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-12-03 04:48:46 -05:00
0fdcf58b89
Signed-off-by: Philip Molares <philip.molares@udo.edu>
43 lines
637 B
SCSS
43 lines
637 B
SCSS
/*!
|
|
* SPDX-FileCopyrightText: 2024 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
@media print {
|
|
.heading-anchor {
|
|
display: none;
|
|
}
|
|
|
|
mark {
|
|
print-color-adjust: exact;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5 {
|
|
break-after: avoid;
|
|
}
|
|
|
|
table, figure, p, img, ul, ol, pre {
|
|
break-inside: avoid;
|
|
}
|
|
|
|
@page {
|
|
size: A4;
|
|
padding: 1.5cm;
|
|
margin: 1cm auto;
|
|
}
|
|
|
|
.print-link {
|
|
display: inline;
|
|
}
|
|
|
|
.markdown-body hr {
|
|
background-color: transparent !important;
|
|
border-bottom: 2px solid #bbbcbf;
|
|
}
|
|
}
|
|
|
|
@media screen {
|
|
.print-link {
|
|
display: none;
|
|
}
|
|
}
|