summaryrefslogtreecommitdiff
path: root/sw-ui/src/components/game/ProductionBar.css
diff options
context:
space:
mode:
authorJoffrey BION <joffrey.bion@gmail.com>2019-05-16 23:48:38 +0200
committerJoffrey BION <joffrey.bion@gmail.com>2019-05-16 23:48:38 +0200
commit2382a452456e4bdef4584e1046925e372624cb79 (patch)
tree0e49b2e5d81facb55fb8b08228abeb218a27d466 /sw-ui/src/components/game/ProductionBar.css
parentRemove GRADLE_METADATA feature to avoid breaking frontend build (diff)
downloadseven-wonders-2382a452456e4bdef4584e1046925e372624cb79.tar.gz
seven-wonders-2382a452456e4bdef4584e1046925e372624cb79.tar.bz2
seven-wonders-2382a452456e4bdef4584e1046925e372624cb79.zip
Rationalize module names
Diffstat (limited to 'sw-ui/src/components/game/ProductionBar.css')
-rw-r--r--sw-ui/src/components/game/ProductionBar.css50
1 files changed, 50 insertions, 0 deletions
diff --git a/sw-ui/src/components/game/ProductionBar.css b/sw-ui/src/components/game/ProductionBar.css
new file mode 100644
index 00000000..77a3b8fc
--- /dev/null
+++ b/sw-ui/src/components/game/ProductionBar.css
@@ -0,0 +1,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