You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
971 B
58 lines
971 B
/* Print Stylesheet */ |
|
|
|
@media print { |
|
.feed-sidebar, |
|
.navbar, |
|
.mobile-menu-toggle, |
|
.skip-link, |
|
footer { |
|
display: none !important; |
|
} |
|
|
|
.layout-container { |
|
flex-direction: column; |
|
max-width: 100%; |
|
padding: 0; |
|
} |
|
|
|
.main-content { |
|
width: 100%; |
|
} |
|
|
|
body { |
|
background: white; |
|
color: black; |
|
} |
|
|
|
article { |
|
background: white; |
|
border: none; |
|
padding: 0; |
|
page-break-inside: avoid; |
|
} |
|
|
|
a { |
|
color: black; |
|
text-decoration: underline; |
|
} |
|
|
|
a[href^="http"]:after { |
|
content: " (" attr(href) ")"; |
|
font-size: 0.8em; |
|
color: #666; |
|
} |
|
|
|
h1, h2, h3 { |
|
page-break-after: avoid; |
|
} |
|
|
|
img { |
|
max-width: 100% !important; |
|
page-break-inside: avoid; |
|
} |
|
|
|
pre, code { |
|
background: #f5f5f5; |
|
border: 1px solid #ddd; |
|
} |
|
}
|
|
|