Skip to content

Commit

Permalink
About page now has embedded google doc for LS User Guide
Browse files Browse the repository at this point in the history
  • Loading branch information
TPS23 committed Jul 26, 2017
1 parent 4b117f6 commit d8c7b42
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 5 deletions.
7 changes: 2 additions & 5 deletions app/views/about.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,9 @@
@imports = {
<!-- <script src='@routes.Assets.at("javascripts/browser.js")' defer></script> -->

<link href='@routes.Assets.at("stylesheets/index.css")' rel='stylesheet'>
<link href='@routes.Assets.at("stylesheets/about.css")' rel='stylesheet'>
}

@main(message, imports, version) {
<div>
<h1>LS stands for "Location Service"</h1>
<p>LS is a service to provide information about locations.</p>
</div>
<iframe class="center-block full-width full-height" src="https://docs.google.com/document/d/1aBj5Vkxmme6MiAPmAF71xDLKHxPfVK8gbf6l0eoxTSA/pub?embedded=true"></iframe>
}
Empty file added public/stylesheets/about.css
Empty file.
29 changes: 29 additions & 0 deletions public/stylesheets/main.css
Original file line number Diff line number Diff line change
@@ -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);
}
Expand Down Expand Up @@ -29,6 +54,10 @@ legend {
text-indent: 5px;
}

.full-width {
width: 100%;
}

.azure {
background-color: #F0FFFF;
}
Expand Down

0 comments on commit d8c7b42

Please sign in to comment.