cookie clicker but bigger
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

119 satır
1.6 KiB

  1. body {
  2. font-family: Sans-Serif;
  3. }
  4. body.dark {
  5. background: #111;
  6. color: #eee;
  7. }
  8. #tasty-micro {
  9. color: #ddd;
  10. background-color: #211;
  11. width: 100px;
  12. height: 75px;
  13. }
  14. #buildings-area {
  15. position: absolute;
  16. width: 20%;
  17. right: 5%;
  18. }
  19. .building-button {
  20. display: block;
  21. width: 100%;
  22. height: 75px;
  23. background-color: #222;
  24. color: #eee;
  25. border: 5px;
  26. border-color: #666;
  27. border-style: solid;
  28. user-select: none;
  29. }
  30. .building-button .building-button-name {
  31. font-size: 24px;
  32. position: relative;
  33. left: 25%;
  34. top: 10%;
  35. user-select: none;
  36. -moz-user-select: none;
  37. }
  38. .building-button .building-button-cost {
  39. font-size: 18px;
  40. position: relative;
  41. left: 25%;
  42. top: 20px;
  43. }
  44. .building-button:hover {
  45. background-color: #333;
  46. }
  47. .building-button:active {
  48. border-color: #333;
  49. background-color: #111;
  50. }
  51. #upgrades-area {
  52. position: absolute;
  53. width: 20%;
  54. right: 35%;
  55. }
  56. #upgrades-list {
  57. display: flex;
  58. flex-wrap: wrap;
  59. }
  60. #upgrade-tooltip {
  61. position: absolute;
  62. width: 200px;
  63. height: 100px;
  64. background: #222;
  65. display: none;
  66. z-index: 1;
  67. left: 0px;
  68. top: 0px;
  69. border: 5px;
  70. border-color: #fff;
  71. }
  72. #upgrade-tooltip-desc {
  73. position:absolute;
  74. top: 0px;
  75. left: 0px;
  76. }
  77. #upgrade-tooltip-effect {
  78. position: absolute;
  79. top: 50px;
  80. }
  81. #upgrade-tooltip-cost {
  82. position: absolute;
  83. right: 0px;
  84. bottom: 0px;
  85. }
  86. .upgrade-button {
  87. width: 75px;
  88. height: 75px;
  89. display: block;
  90. background-color: #444;
  91. user-select: none;
  92. -moz-user-select: none;
  93. }
  94. .upgrade-button-name {
  95. position: relative;
  96. text-align: center;
  97. width: 75px;
  98. height: 75px
  99. top: 50%;
  100. left: 50%;
  101. margin: 18.75px -37.5px;
  102. }