summaryrefslogtreecommitdiff
path: root/frontend/src/components/game/Board.css
blob: 0c0d49c9e5583689312b5bbc56eebfb082c2e9d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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