summaryrefslogtreecommitdiff
path: root/frontend/src/components/game/Board.css
blob: 0600bd14b60dac929ac94237ff8dc2a0e9b6b430 (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
35
36
37
38
.board {
    width: 100vw
}

.cards {
    display: flex;
    height: 40vh;
    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 {
    border-radius: 0.5%/1.5%;
    box-shadow: 0.2rem 0.2rem 0.5rem black;
    max-height: 30vh;
    max-width: 95vw;
}
bgstack15