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.
 
 
 

289 lines
3.7 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. display: none;
  113. }
  114. #victim-table {
  115. display: none;
  116. margin: auto;
  117. width: 80%;
  118. }
  119. .victim-table-cell {
  120. width: 10%;
  121. }
  122. .reveal-if-active {
  123. opacity: 0;
  124. max-height: 0;
  125. overflow: hidden;
  126. }
  127. .reveal-if-active-2 {
  128. opacity: 0;
  129. max-height: 0;
  130. overflow: hidden;
  131. }
  132. input[type="radio"]:checked ~ .reveal-if-active,
  133. input[type="checkbox"]:checked ~ .reveal-if-active {
  134. opacity: 1;
  135. max-height: 200px; /* little bit of a magic number :( */
  136. overflow: visible;
  137. }
  138. input.sub[type="radio"]:checked ~ .reveal-if-active-2,
  139. input.sub[type="checkbox"]:checked ~ .reveal-if-active-2 {
  140. opacity: 1;
  141. max-height: 200px; /* little bit of a magic number :( */
  142. overflow: visible;
  143. }
  144. .flex-outer li,
  145. .flex-inner {
  146. display: flex;
  147. flex-wrap: wrap;
  148. align-items: center;
  149. width: 500px;
  150. }
  151. .flex-outer > li > label,
  152. .flex-outer > div > div > li > label,
  153. .flex-outer li p {
  154. flex: 1 0 120px;
  155. max-width: 220px;
  156. }
  157. .flex-outer > li > label + *,
  158. .flex-outer > div > div > li > label + *,
  159. .flex-inner {
  160. flex: 1 0 220px;
  161. }
  162. body.light .has-tooltip {
  163. position: relative;
  164. display: inline-block;
  165. border-bottom: 1px dotted black;
  166. }
  167. body.dark .has-tooltip {
  168. position: relative;
  169. display: inline-block;
  170. border-bottom: 1px dotted white;
  171. }
  172. body.light a {
  173. color: #0000FF;
  174. text-decoration: none;
  175. }
  176. body.light a:visited {
  177. color: #0000AA;
  178. }
  179. body.light a:hover {
  180. color: #0000EE;
  181. }
  182. body.dark a {
  183. color: #0000FF;
  184. text-decoration: none;
  185. }
  186. body.dark a:visited {
  187. color: #0000DD;
  188. }
  189. body.dark a:hover {
  190. color: #0000EE;
  191. }
  192. #grow-panel {
  193. width: 100%;
  194. }
  195. th {
  196. font-weight: normal;
  197. }
  198. .growth-option {
  199. display: none;
  200. }
  201. .growth-option+label {
  202. display: none;
  203. }
  204. .growth-label {
  205. font-size: 20pt;
  206. }
  207. input[type="radio"]:checked+
  208. .growth-label {
  209. font-weight: bold;
  210. }
  211. .growth-amount {
  212. width: 50%;
  213. }
  214. ul {
  215. list-style: none;
  216. }
  217. .action-tab {
  218. flex-wrap: wrap;
  219. display: none;
  220. width: 100%;
  221. }
  222. .action-part-button {
  223. border: 1px;
  224. font-size: 30px;
  225. width: 50%;
  226. height: 100px;
  227. display: none;
  228. }
  229. .action-part-button.active {
  230. border: 1px;
  231. font-size: 30px;
  232. width: 50%;
  233. height: 100px;
  234. background: #555;
  235. }