summaryrefslogtreecommitdiff
path: root/frontend/src/components/game/GameScene.css
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/components/game/GameScene.css')
-rw-r--r--frontend/src/components/game/GameScene.css13
1 files changed, 13 insertions, 0 deletions
diff --git a/frontend/src/components/game/GameScene.css b/frontend/src/components/game/GameScene.css
new file mode 100644
index 00000000..525e68fa
--- /dev/null
+++ b/frontend/src/components/game/GameScene.css
@@ -0,0 +1,13 @@
+.gameSceneRoot {
+ background: url('background-papyrus.jpg') center no-repeat;
+ background-size: cover;
+}
+
+.fullscreen {
+ position: fixed;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ right: 0;
+ overflow: auto;
+}
bgstack15