blob: 35b25137e766bfc916bf036a5818cea513100f04 (
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
|
.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;
}
.fixed-resources {
margin: auto;
display: flex;
}
.alternative-resources {
margin: auto;
display: flex;
}
.resource-with-count {
margin-left: 1rem
}
.resource-choice {
margin-left: 1.5rem;
}
.resource-img {
height: 3rem;
vertical-align: middle;
width: 3rem;
}
.resource-count {
font-family: fantasy;
font-size: 1.5rem;
margin-left: 0.2rem;
vertical-align: middle;
}
.choice-separator {
font-size: 2rem;
vertical-align: middle;
margin: 5px;
color: #c29929;
text-shadow: 0 0 1px black;
}
|