big steppy
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.
 
 
 

220 satır
2.8 KiB

  1. body {
  2. background: #eee;
  3. font-family: Arial;
  4. }
  5. .game-area {
  6. display: flex;
  7. margin: auto;
  8. }
  9. @media (max-aspect-ratio: 1/1){
  10. .game-area {
  11. width: 100%
  12. }
  13. }
  14. @media (min-aspect-ratio: 1/1){
  15. .game-area {
  16. width: 75%
  17. }
  18. }
  19. #log-area {
  20. flex: 3;
  21. display:none;
  22. }
  23. #log {
  24. height: 900px;
  25. overflow: auto;
  26. background-color: #fff;
  27. }
  28. .stat-header-self {
  29. font-weight: bold;
  30. font-size: 150%;
  31. min-width:250px;
  32. }
  33. .stat-header {
  34. font-weight: bold;
  35. font-size: 150%;
  36. min-width:130px;
  37. }
  38. .stat-line {
  39. font-weight: normal;
  40. font-size: 12pt;
  41. }
  42. .sidebar {
  43. display: none;
  44. flex-wrap: wrap;
  45. flex-direction: column;
  46. text-align: right;
  47. min-width: 250px;
  48. flex: 1;
  49. }
  50. .preset-selector {
  51. height: 25px;
  52. }
  53. .option-container {
  54. margin: auto;
  55. }
  56. .button-container {
  57. flex-wrap: wrap;
  58. flex-direction: column;
  59. flex: 1;
  60. }
  61. .action-part-container {
  62. max-height: 300px;
  63. display: flex;
  64. flex-wrap: wrap;
  65. }
  66. #action-panel {
  67. display: none;
  68. }
  69. .option-button {
  70. font-size: 20px;
  71. width: 120px;
  72. height: 75px;
  73. }
  74. .stat-button {
  75. font-size: 20px;
  76. width: 120px;
  77. height: 75px;
  78. }
  79. .option-form {
  80. font-size: 16px;
  81. width: 300px;
  82. height: 100px;
  83. }
  84. .action-button {
  85. font-size: 18px;
  86. width: 50%;
  87. height: 75px;
  88. }
  89. #victim-table {
  90. margin: auto;
  91. width: 80%;
  92. }
  93. .victim-table-cell {
  94. width: 10%;
  95. }
  96. .reveal-if-active {
  97. opacity: 0;
  98. max-height: 0;
  99. overflow: hidden;
  100. }
  101. .reveal-if-active-2 {
  102. opacity: 0;
  103. max-height: 0;
  104. overflow: hidden;
  105. }
  106. input[type="radio"]:checked ~ .reveal-if-active,
  107. input[type="checkbox"]:checked ~ .reveal-if-active {
  108. opacity: 1;
  109. max-height: 200px; /* little bit of a magic number :( */
  110. overflow: visible;
  111. }
  112. input.sub[type="radio"]:checked ~ .reveal-if-active-2,
  113. input.sub[type="checkbox"]:checked ~ .reveal-if-active-2 {
  114. opacity: 1;
  115. max-height: 200px; /* little bit of a magic number :( */
  116. overflow: visible;
  117. }
  118. .flex-outer li,
  119. .flex-inner {
  120. display: flex;
  121. flex-wrap: wrap;
  122. align-items: center;
  123. width: 500px;
  124. }
  125. .flex-outer > li > label,
  126. .flex-outer > div > div > li > label,
  127. .flex-outer li p {
  128. flex: 1 0 120px;
  129. max-width: 220px;
  130. }
  131. .flex-outer > li > label + *,
  132. .flex-outer > div > div > li > label + *,
  133. .flex-inner {
  134. flex: 1 0 220px;
  135. }
  136. .has-tooltip {
  137. position: relative;
  138. display: inline-block;
  139. border-bottom: 1px dotted black;
  140. }
  141. #grow-panel {
  142. width: 100%;
  143. }
  144. th {
  145. font-weight: normal;
  146. }
  147. .growth-option {
  148. display: none;
  149. }
  150. .growth-label {
  151. font-size: 20pt;
  152. }
  153. input[type="radio"]:checked+
  154. .growth-label {
  155. font-weight: bold;
  156. }
  157. .growth-amount {
  158. width: 50%;
  159. }
  160. ul {
  161. list-style: none;
  162. }
  163. .action-tab {
  164. flex-wrap: wrap;
  165. display: none;
  166. width: 100%;
  167. }
  168. .action-part-button {
  169. border: 1px;
  170. font-size: 30px;
  171. width: 50%;
  172. height: 100px;
  173. }
  174. .action-part-button.active {
  175. border: 1px;
  176. font-size: 30px;
  177. width: 50%;
  178. height: 100px;
  179. background: #555;
  180. }