cookie clicker but bigger
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- body {
- font-family: Sans-Serif;
- }
-
- body.dark {
- background: #111;
- color: #eee;
- }
-
- #buildings-area {
- width: 20%;
- }
-
- #tasty-micro {
- color: #ddd;
- background-color: #211;
- width: 100px;
- height: 75px;
- }
-
- .building-button {
- display: block;
- width: 100%;
- height: 150px;
- background-color: #222;
- color: #eee;
- border: 5px;
- border-color: #666;
- border-style: solid;
- }
-
- .building-button .building-button-name {
- font-size: 24px;
- position: relative;
- left: 25%;
- top: 10%;
- }
-
- .building-button .building-button-cost {
- font-size: 18px;
- position: relative;
- left: 25%;
- top: 40%;
- }
-
- .building-button:hover {
- background-color: #333;
- }
-
- .building-button:active {
- border-color: #333;
- background-color: #111;
- }
|