diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-02-27 11:23:49 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-02-27 11:23:49 -0500 |
commit | 3f53904b14eb5b9594a4f81c41ed96395dd50ef4 (patch) | |
tree | 97c753b8c60550fe9f3318f7786e8e3c48220b5c | |
parent | a7c288b10f197818b2ad233a852268c0f160d8e3 (diff) |
Tidy up
-rwxr-xr-x | hooks/after_prepare/gen_resources | 5 | ||||
-rw-r--r-- | www/css/index.scss | 8 | ||||
-rw-r--r-- | www/find.html | 0 | ||||
-rw-r--r-- | www/index.html | 2 |
4 files changed, 7 insertions, 8 deletions
diff --git a/hooks/after_prepare/gen_resources b/hooks/after_prepare/gen_resources index c98c905..b8a2020 100755 --- a/hooks/after_prepare/gen_resources +++ b/hooks/after_prepare/gen_resources @@ -1,7 +1,4 @@ #! /usr/bin/env bash IFS=, platforms=($CORDOVA_PLATFORMS) - -resources=("${platforms[@]/%/-resources}") -make "${resources[@]/#/clean-}" -make "${resources[@]}" +make "${platforms[@]/%/-resources}" diff --git a/www/css/index.scss b/www/css/index.scss index 93e321a..fa2fd72 100644 --- a/www/css/index.scss +++ b/www/css/index.scss @@ -50,12 +50,13 @@ html { body#index { height: 100%; table { + width: 100%; height: 100%; + padding: 0; margin: 0; - - width: 100%; border-collapse: collapse; + td, th { border: solid 1px $yellow; } @@ -78,6 +79,7 @@ body#index { /* A wrapper round cell contents allowing us to use fancy table-positioning inside of the cell */ display: table; + width: 100%; height: 100%; a { @@ -88,7 +90,7 @@ body#index { } &.logo { background-image: url("../img/logo.png"); - background-size: auto 100%; + background-size: contain; background-position: center center; background-repeat: no-repeat; } diff --git a/www/find.html b/www/find.html deleted file mode 100644 index e69de29..0000000 --- a/www/find.html +++ /dev/null diff --git a/www/index.html b/www/index.html index d66b84d..9fd70c8 100644 --- a/www/index.html +++ b/www/index.html @@ -23,7 +23,7 @@ </tr> <tr> <td><div><a href="./Emergency_Procedures.html">Emergency Procedures</a></div></td> - <td><div class=logo> </div></td> + <td><div class="logo"> </div></td> <td><div><a href="./MSDS.html">MSDS</a></div></td> </tr> <tr> |