summaryrefslogtreecommitdiff
path: root/css/wordsearch.css
diff options
context:
space:
mode:
authorSteven Thomas <[email protected]>2014-03-20 14:16:50 -0700
committerSteven Thomas <[email protected]>2014-03-20 14:16:50 -0700
commit8c81bfbcdf3451ae634927a1270c40941ba02d5e (patch)
treed094af77cc9a17bbfaa7ac0d68040f5d4c91a7a7 /css/wordsearch.css
parent6e28e7607bd492c960f40260d1de64e26652e2ba (diff)
downloadword-search-game-8c81bfbcdf3451ae634927a1270c40941ba02d5e.tar.gz
word-search-game-8c81bfbcdf3451ae634927a1270c40941ba02d5e.zip
Added very simple solved word tracker and Game Over overlay.
Diffstat (limited to 'css/wordsearch.css')
-rw-r--r--css/wordsearch.css37
1 files changed, 37 insertions, 0 deletions
diff --git a/css/wordsearch.css b/css/wordsearch.css
index 02853f0..149c36e 100644
--- a/css/wordsearch.css
+++ b/css/wordsearch.css
@@ -25,4 +25,41 @@
.ws-found {
background: yellow;
+}
+
+.ws-game-over-outer {
+ background: rgba(0, 0, 0, 0.85);
+ height: 100%;
+ left: 0;
+ position: absolute;
+ top: 0;
+ width: 100%;
+}
+
+.ws-game-over-inner {
+ width:100%;
+ height:100%;
+ padding:0;
+ margin:0;
+ display:table;
+}
+
+.ws-game-over {
+ display:table-cell;
+ vertical-align:middle;
+}
+
+.ws-game-over h2 {
+ color:#FFFFFF;
+ font-size:2em;
+ text-transform:uppercase;
+ padding:0;
+ margin:0 0 9px 0;
+}
+
+.ws-game-over p {
+ color:#FFFFFF;
+ font-size:1em;
+ padding:0;
+ margin:0;
} \ No newline at end of file