diff options
| author | Mirek Kratochvil <exa.exa@gmail.com> | 2023-06-14 21:03:20 +0200 |
|---|---|---|
| committer | Mirek Kratochvil <exa.exa@gmail.com> | 2023-06-14 21:03:20 +0200 |
| commit | e347e72f7e967fb058d8ba40a319d03a5ad6d12f (patch) | |
| tree | 64722fa21a9fedbab45451c561e1ff36f31c988c | |
| parent | 8cb15d3960b8942deb96e1d143e5b6ede60d0a2d (diff) | |
| download | reploy-e347e72f7e967fb058d8ba40a319d03a5ad6d12f.tar.gz reploy-e347e72f7e967fb058d8ba40a319d03a5ad6d12f.tar.bz2 | |
printing support
| -rw-r--r-- | assets/style.css | 26 |
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; + } +} |
