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

251 lines
3.2 KiB

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