From 67302efe59128d6f7c1a46693257a894dffd4bb7 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Mon, 26 Nov 2018 10:41:05 -0200 Subject: [PATCH] starting to fix the printed version --- .gitignore | 1 + index.html | 3 ++- print.css | 73 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 76 insertions(+), 1 deletion(-) create mode 100644 .gitignore create mode 100644 print.css diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..45d62d8 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.sw? diff --git a/index.html b/index.html index 08a13b7..54db554 100644 --- a/index.html +++ b/index.html @@ -6,9 +6,10 @@ - + + diff --git a/print.css b/print.css new file mode 100644 index 0000000..2a8676b --- /dev/null +++ b/print.css @@ -0,0 +1,73 @@ +@media print { + .large-1, + .medium-1, + .small-1 { + width: 8.33333%; + } + + .large-2, + .medium-2, + .small-2 { + width: 16.66667%; + } + + .large-3, + .medium-3, + .small-3 { + width: 25%; + } + + .large-4, + .medium-4, + .small-4 { + width: 33.33333%; + } + + .large-5, + .medium-5, + .small-5 { + width: 41.66667%; + } + + .large-6, + .medium-6, + .small-6 { + width: 50%; + } + + .large-7, + .medium-7, + .small-7 { + width: 58.33333%; + } + + .large-8, + .medium-8, + .small-8 { + width: 66.66667%; + } + + .large-9, + .medium-9, + .small-9 { + width: 75%; + } + + .large-10, + .medium-10, + .small-10 { + width: 83.33333%; + } + + .large-11, + .medium-11, + .small-11 { + width: 91.66667%; + } + + .large-12, + .medium-12, + .small-12 { + width: 100%; + } +}