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.
 
 
 
 

54 line
736 B

  1. body {
  2. font-family: Sans-Serif;
  3. }
  4. body.dark {
  5. background: #111;
  6. color: #eee;
  7. }
  8. #buildings-area {
  9. width: 20%;
  10. }
  11. #tasty-micro {
  12. color: #ddd;
  13. background-color: #211;
  14. width: 100px;
  15. height: 75px;
  16. }
  17. .building-button {
  18. display: block;
  19. width: 100%;
  20. height: 150px;
  21. background-color: #222;
  22. color: #eee;
  23. border: 5px;
  24. border-color: #666;
  25. border-style: solid;
  26. }
  27. .building-button .building-button-name {
  28. font-size: 24px;
  29. position: relative;
  30. left: 25%;
  31. top: 10%;
  32. }
  33. .building-button .building-button-cost {
  34. font-size: 18px;
  35. position: relative;
  36. left: 25%;
  37. top: 40%;
  38. }
  39. .building-button:hover {
  40. background-color: #333;
  41. }
  42. .building-button:active {
  43. border-color: #333;
  44. background-color: #111;
  45. }