big steppy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

221 строка
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: 16/9){
  10. .game-area {
  11. width: 100%
  12. }
  13. }
  14. @media (min-aspect-ratio: 16/10){
  15. .game-area {
  16. width: 75%
  17. }
  18. }
  19. #log-area {
  20. flex: 5;
  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. display: none;
  91. margin: auto;
  92. width: 80%;
  93. }
  94. .victim-table-cell {
  95. width: 10%;
  96. }
  97. .reveal-if-active {
  98. opacity: 0;
  99. max-height: 0;
  100. overflow: hidden;
  101. }
  102. .reveal-if-active-2 {
  103. opacity: 0;
  104. max-height: 0;
  105. overflow: hidden;
  106. }
  107. input[type="radio"]:checked ~ .reveal-if-active,
  108. input[type="checkbox"]:checked ~ .reveal-if-active {
  109. opacity: 1;
  110. max-height: 200px; /* little bit of a magic number :( */
  111. overflow: visible;
  112. }
  113. input.sub[type="radio"]:checked ~ .reveal-if-active-2,
  114. input.sub[type="checkbox"]:checked ~ .reveal-if-active-2 {
  115. opacity: 1;
  116. max-height: 200px; /* little bit of a magic number :( */
  117. overflow: visible;
  118. }
  119. .flex-outer li,
  120. .flex-inner {
  121. display: flex;
  122. flex-wrap: wrap;
  123. align-items: center;
  124. width: 500px;
  125. }
  126. .flex-outer > li > label,
  127. .flex-outer > div > div > li > label,
  128. .flex-outer li p {
  129. flex: 1 0 120px;
  130. max-width: 220px;
  131. }
  132. .flex-outer > li > label + *,
  133. .flex-outer > div > div > li > label + *,
  134. .flex-inner {
  135. flex: 1 0 220px;
  136. }
  137. .has-tooltip {
  138. position: relative;
  139. display: inline-block;
  140. border-bottom: 1px dotted black;
  141. }
  142. #grow-panel {
  143. width: 100%;
  144. }
  145. th {
  146. font-weight: normal;
  147. }
  148. .growth-option {
  149. display: none;
  150. }
  151. .growth-label {
  152. font-size: 20pt;
  153. }
  154. input[type="radio"]:checked+
  155. .growth-label {
  156. font-weight: bold;
  157. }
  158. .growth-amount {
  159. width: 50%;
  160. }
  161. ul {
  162. list-style: none;
  163. }
  164. .action-tab {
  165. flex-wrap: wrap;
  166. display: none;
  167. width: 100%;
  168. }
  169. .action-part-button {
  170. border: 1px;
  171. font-size: 30px;
  172. width: 50%;
  173. height: 100px;
  174. }
  175. .action-part-button.active {
  176. border: 1px;
  177. font-size: 30px;
  178. width: 50%;
  179. height: 100px;
  180. background: #555;
  181. }