summaryrefslogtreecommitdiff
path: root/index.css
diff options
context:
space:
mode:
authorJ08nY2016-04-16 15:31:08 +0200
committerJ08nY2016-04-16 15:31:08 +0200
commitc5d0b945bf4dccc0e611d961f5f60dc3ded293e6 (patch)
treee5f749b6db3721860dcd72728b3233f4b54e072b /index.css
parente56e60e81b9cf4ed56ff1ab4c1bf3f92985944b4 (diff)
downloadld35-c5d0b945bf4dccc0e611d961f5f60dc3ded293e6.tar.gz
ld35-c5d0b945bf4dccc0e611d961f5f60dc3ded293e6.tar.zst
ld35-c5d0b945bf4dccc0e611d961f5f60dc3ded293e6.zip
Diffstat (limited to 'index.css')
-rw-r--r--index.css50
1 files changed, 50 insertions, 0 deletions
diff --git a/index.css b/index.css
new file mode 100644
index 0000000..73d8764
--- /dev/null
+++ b/index.css
@@ -0,0 +1,50 @@
+html, body {
+ width: 100%;
+ height: 100%;
+}
+
+body {
+ background-color: #ffffff;
+ margin: 0;
+ overflow: hidden;
+ font-family: arial;
+}
+
+#block {
+
+ position: absolute;
+
+ width: 100%;
+ height: 100%;
+
+ background-color: rgba(0,0,0,0.5);
+
+}
+
+#instructions {
+
+ width: 100%;
+ height: 100%;
+
+ display: -webkit-box;
+ display: -moz-box;
+ display: box;
+
+ -webkit-box-orient: horizontal;
+ -moz-box-orient: horizontal;
+ box-orient: horizontal;
+
+ -webkit-box-pack: center;
+ -moz-box-pack: center;
+ box-pack: center;
+
+ -webkit-box-align: center;
+ -moz-box-align: center;
+ box-align: center;
+
+ color: #ffffff;
+ text-align: center;
+
+ cursor: pointer;
+
+}