summaryrefslogtreecommitdiff
path: root/frontend/src/components/game/Board.css
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/components/game/Board.css')
-rw-r--r--frontend/src/components/game/Board.css34
1 files changed, 34 insertions, 0 deletions
diff --git a/frontend/src/components/game/Board.css b/frontend/src/components/game/Board.css
new file mode 100644
index 00000000..0c0d49c9
--- /dev/null
+++ b/frontend/src/components/game/Board.css
@@ -0,0 +1,34 @@
+.board {
+ width: 100vw
+}
+
+.cards {
+ width: 100vw;
+}
+
+.card-column {
+ height: 40vh;
+ margin: auto;
+ position: relative;
+ width: 15vw;
+}
+
+.card {
+ position: absolute;
+ /* dynamic positioning in JS */
+}
+
+.table-card-img {
+ max-width: 10vw;
+ max-height: 25vh;
+}
+
+.wonder {
+ width: 100vw;
+ text-align: center;
+}
+
+.wonder-img {
+ max-height: 30vh;
+ max-width: 95vw;
+}
bgstack15