| body {
  font-family: Sans-Serif;
}
body.dark {
  background: #111;
  color: #eee;
}
#tasty-micro {
  color: #ddd;
  background-color: #211;
  width: 300px;
  height: 200px;
  position: fixed;
  left: 15%;
  top: 50%;
  bottom: 50%;
  margin: auto;
  font-size: 60px;
}
#top-bar {
  background-color: #322;
  position: absolute;
  width: 100%;
  height: 10%;
  top: 0%;
  left: 0%;
  text-align: center;
  margin: auto;
}
#resources-area {
  position: absolute;
  text-align: center;
  width: 20%;
  left: 0%;
  top: 10%;
  margin: auto;
}
#buildings-area {
  position: absolute;
  width: 20%;
  right: 5%;
  top: 10%;
  height: 100%;
  overflow-y: scroll;
}
.building-button {
  display: block;
  width: 90%;
  height: 75px;
  background-color: #222;
  color: #eee;
  border: 5px;
  border-color: #666;
  border-style: solid;
  user-select: none;
}
.building-button-disabled {
  background-color: #111;
  color: #999;
}
.building-button .building-button-name {
  font-size: 24px;
  position: relative;
  left: 25%;
  top: 10%;
  user-select: none;
  -moz-user-select: none;
}
.building-button .building-button-cost {
  font-size: 18px;
  position: relative;
  left: 25%;
  top: 20px;
}
.building-button:hover {
  background-color: #333;
}
.building-button-disabled:hover {
  background-color: #111 !important;
}
.building-button:active {
  border-color: #333;
  background-color: #111;
}
#upgrades-area {
  position: absolute;
  width: 20%;
  right: 35%;
  top: 10%;
}
#upgrades-list {
  display: flex;
  flex-wrap: wrap;
}
#upgrade-tooltip {
  position: absolute;
  width: 200px;
  height: 100px;
  background: #222;
  display: none;
  z-index: 1;
  left: 0px;
  top: 0px;
  border: 5px;
  border-color: #fff;
}
#upgrade-tooltip-desc {
  position:absolute;
  top: 0px;
  left: 0px;
}
#upgrade-tooltip-effect {
  position: absolute;
  top: 50px;
}
#upgrade-tooltip-cost {
  position: absolute;
  right: 0px;
  bottom: 0px;
}
.upgrade-button {
  width: 75px;
  height: 75px;
  display: block;
  background-color: #444;
  user-select: none;
  -moz-user-select: none;
}
.upgrade-button-inactive {
  background-color: #222 !important;
}
.upgrade-button-name {
  position: relative;
  text-align: center;
  width: 75px;
  height: 75px
  top: 50%;
  left: 50%;
  margin: 18.75px -37.5px;
}
 |