aboutsummaryrefslogtreecommitdiff
path: root/game.css
diff options
context:
space:
mode:
Diffstat (limited to 'game.css')
-rw-r--r--game.css33
1 files changed, 33 insertions, 0 deletions
diff --git a/game.css b/game.css
new file mode 100644
index 0000000..e1d198a
--- /dev/null
+++ b/game.css
@@ -0,0 +1,33 @@
+html, body, #cvs {
+ margin: 0;
+ padding: 0;
+ width: 100%;
+ height: 100%;
+ overflow: hidden;
+}
+
+body {
+ position: relative;
+ font-family: sans-serif;
+}
+
+#overlay-container {
+ position: absolute;
+ left: 0;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ align-items: center;
+ display: flex;
+ justify-content: center;
+}
+
+#status {
+ color: #ffffff;
+ font-size: 40pt;
+ text-shadow: 0px 0px 3px #000000;
+
+ user-select: none;
+ -moz-user-select: none;
+ -webkit-user-select: none;
+}