summaryrefslogtreecommitdiff
path: root/sw-ui/src/components/game/ProductionBar.css
blob: 77a3b8fc2fc5262570e34f7c7c4fa6cdaaca68ca (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
39
40
41
42
43
44
45
46
47
48
49
50
.production-bar {
    align-items: center;
    background: lightgray;
    bottom: 0;
    border-top: 1px #8b8b8b solid;
    background: linear-gradient(#eaeaea, #888 7%);
    box-shadow: 0 0 15px 0 #747474;
    display: flex;
    height: 3.5rem;
    position: fixed;
    width: 100vw;
    z-index: 99;
}

.fixed-resources {
    margin: auto;
    display: flex;
}
.alternative-resources {
    margin: auto;
    display: flex;
}

.resource-with-count {
    margin-left: 1rem
}
.resource-choice {
    margin-left: 1.5rem;
}

.choice-separator {
    font-size: 2rem;
    vertical-align: middle;
    margin: 5px;
    color: #c29929;
    text-shadow: 0 0 1px black;
}

.token-img {
    height: 3rem;
    vertical-align: middle;
    width: 3rem;
}

.token-count {
    font-family: fantasy;
    font-size: 1.5rem;
    margin-left: 0.2rem;
    vertical-align: middle;
}
bgstack15