From c20e168ce23154500a69c0a91da774af4169e5b6 Mon Sep 17 00:00:00 2001 From: Michael Nolan Date: Sat, 11 Nov 2023 09:20:14 -0600 Subject: [PATCH] Add printable --- BibleServerCli/data/www/index.html | 2 + BibleServerCli/data/www/print.css | 14 +++ BibleServerCli/data/www/printable/index.html | 120 +++++++++++++++++++ 3 files changed, 136 insertions(+) create mode 100644 BibleServerCli/data/www/print.css create mode 100644 BibleServerCli/data/www/printable/index.html diff --git a/BibleServerCli/data/www/index.html b/BibleServerCli/data/www/index.html index 8bdb785..d70fc45 100644 --- a/BibleServerCli/data/www/index.html +++ b/BibleServerCli/data/www/index.html @@ -14,6 +14,8 @@

Read The Bible in browser +
+ Printable

diff --git a/BibleServerCli/data/www/print.css b/BibleServerCli/data/www/print.css new file mode 100644 index 0000000..0e673c0 --- /dev/null +++ b/BibleServerCli/data/www/print.css @@ -0,0 +1,14 @@ +@media screen +{ + .print-only + { + display: none; + } +} + +@media print { + .screen-only + { + display: none; + } +} \ No newline at end of file diff --git a/BibleServerCli/data/www/printable/index.html b/BibleServerCli/data/www/printable/index.html new file mode 100644 index 0000000..80f3aac --- /dev/null +++ b/BibleServerCli/data/www/printable/index.html @@ -0,0 +1,120 @@ + + + + + + Scripture Viewer + + + + +
+ + + +
+

+ + + + \ No newline at end of file