aboutsummaryrefslogtreecommitdiff
path: root/assets
diff options
context:
space:
mode:
authorMirek Kratochvil <exa.exa@gmail.com>2023-06-14 21:03:20 +0200
committerMirek Kratochvil <exa.exa@gmail.com>2023-06-14 21:03:20 +0200
commite347e72f7e967fb058d8ba40a319d03a5ad6d12f (patch)
tree64722fa21a9fedbab45451c561e1ff36f31c988c /assets
parent8cb15d3960b8942deb96e1d143e5b6ede60d0a2d (diff)
downloadreploy-e347e72f7e967fb058d8ba40a319d03a5ad6d12f.tar.gz
reploy-e347e72f7e967fb058d8ba40a319d03a5ad6d12f.tar.bz2
printing support
Diffstat (limited to 'assets')
-rw-r--r--assets/style.css26
1 files changed, 26 insertions, 0 deletions
diff --git a/assets/style.css b/assets/style.css
index 126f4cd..87481bd 100644
--- a/assets/style.css
+++ b/assets/style.css
@@ -379,3 +379,29 @@ main {
width: 20rem;
}
}
+
+@media print {
+ html {
+ font-size: 10pt;
+ }
+
+ header {
+ display: none;
+ }
+
+ .content-footer {
+ display: none;
+ }
+
+ .content {
+ padding: 0;
+ }
+
+ .sidebox {
+ display: none;
+ }
+
+ pre {
+ overflow-x: wrap;
+ }
+}