32 lines
781 B
CSS
32 lines
781 B
CSS
@import "https://fonts.googleapis.com/css?family=Open+Sans:300,300italic,400,400italic,600,600italic%7CNoto+Serif:400,400italic,700,700italic%7CDroid+Sans+Mono:400,700";
|
|
@import "https://cdn.jsdelivr.net/gh/asciidoctor/asciidoctor@2.0/data/stylesheets/asciidoctor-default.css";
|
|
|
|
@media print {
|
|
a::after {
|
|
content: none !important; /* Prevent showing URLs in print */
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
page-break-after: avoid !important;
|
|
}
|
|
|
|
p, pre {
|
|
page-break-before: avoid !important;
|
|
page-break-inside: avoid !important;
|
|
page-break-after: avoid !important;
|
|
}
|
|
}
|
|
|
|
* {
|
|
font-family: 'Open Sans', sans-serif !important;
|
|
}
|
|
|
|
p:not(.tableblock) {
|
|
text-align: justify !important;
|
|
}
|
|
|
|
.analysis {
|
|
td:nth-child(2) p {
|
|
text-align: justify !important;
|
|
}
|
|
} |