- body {
- font-family: Sans-Serif;
- }
-
- body.dark {
- background: #111;
- color: #eee;
- }
-
- #tasty-micro {
- color: #ddd;
- background-color: #211;
- width: 100px;
- height: 75px;
- }
-
- #buildings-area {
- position: absolute;
- width: 20%;
- right: 5%;
- }
-
- .building-button {
- display: block;
- width: 100%;
- height: 75px;
- background-color: #222;
- color: #eee;
- border: 5px;
- border-color: #666;
- border-style: solid;
- user-select: none;
- }
-
- .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:active {
- border-color: #333;
- background-color: #111;
- }
-
- #upgrades-area {
- position: absolute;
- width: 20%;
- right: 35%;
- }
-
- #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-name {
- position: relative;
- text-align: center;
- width: 75px;
- height: 75px
- top: 50%;
- left: 50%;
- margin: 18.75px -37.5px;
- }
|