From d8c7b423c597eb6d93848674a83424fb225b1c96 Mon Sep 17 00:00:00 2001 From: TPS23 Date: Wed, 26 Jul 2017 18:33:54 -0400 Subject: [PATCH] About page now has embedded google doc for LS User Guide --- app/views/about.scala.html | 7 ++----- public/stylesheets/about.css | 0 public/stylesheets/main.css | 29 +++++++++++++++++++++++++++++ 3 files changed, 31 insertions(+), 5 deletions(-) create mode 100644 public/stylesheets/about.css diff --git a/app/views/about.scala.html b/app/views/about.scala.html index c36d831..e18271a 100644 --- a/app/views/about.scala.html +++ b/app/views/about.scala.html @@ -3,12 +3,9 @@ @imports = { - + } @main(message, imports, version) { -
-

LS stands for "Location Service"

-

LS is a service to provide information about locations.

-
+ } diff --git a/public/stylesheets/about.css b/public/stylesheets/about.css new file mode 100644 index 0000000..e69de29 diff --git a/public/stylesheets/main.css b/public/stylesheets/main.css index 737a330..682d38b 100644 --- a/public/stylesheets/main.css +++ b/public/stylesheets/main.css @@ -1,3 +1,28 @@ +@media only screen and (min-height: 1024px) { + .full-height { + height: 800px; + } +} + +@media only screen and (max-height: 944px) { + .full-height { + height: 700px; + } +} + +@media only screen and (max-height: 700px) { + .full-height { + height: 400px; + } +} + +@media only screen and (max-height: 412px) { + .full-height { + height: 200px; + } +} + + body { background-color: rgb(237, 238, 247); } @@ -29,6 +54,10 @@ legend { text-indent: 5px; } +.full-width { + width: 100%; +} + .azure { background-color: #F0FFFF; }