From 561c22d40141a796bffecbb24bcc02f931d92e1c Mon Sep 17 00:00:00 2001 From: Mohammed El-Dahash Date: Sat, 7 Jan 2017 23:31:01 -0800 Subject: Print CSS to fix printing problems No more sidebar filling half of the printed pages, or unnecessary blank pages. --- static/css/print.css | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 static/css/print.css diff --git a/static/css/print.css b/static/css/print.css new file mode 100644 index 0000000..da8f1df --- /dev/null +++ b/static/css/print.css @@ -0,0 +1,19 @@ +.sidebar { + display: none !important; +} + +.content { + margin: 0 auto; + width: 100%; + float: none; + display: initial; +} + +.container { + width: 100%; + float: none; + display: initial; + padding-left: 1rem; + padding-right: 1rem; + margin: 0 auto; +} -- cgit v1.2.1-24-ge1ad