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

295 строки
3.8 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. .stat-line-hidden {
  67. font-weight: normal;
  68. font-size: 12pt;
  69. display: none;
  70. }
  71. .sidebar {
  72. display: none;
  73. flex-wrap: wrap;
  74. flex-direction: column;
  75. text-align: right;
  76. min-width: 250px;
  77. flex: 1;
  78. }
  79. .preset-selector {
  80. height: 25px;
  81. }
  82. .option-container {
  83. margin: auto;
  84. }
  85. .button-container {
  86. flex-wrap: wrap;
  87. flex-direction: column;
  88. flex: 1;
  89. }
  90. .action-part-container {
  91. max-height: 400px;
  92. display: flex;
  93. flex-wrap: wrap;
  94. }
  95. #action-panel {
  96. display: none;
  97. }
  98. .option-button {
  99. font-size: 20px;
  100. width: 120px;
  101. height: 75px;
  102. }
  103. .stat-button {
  104. font-size: 20px;
  105. width: 120px;
  106. height: 75px;
  107. }
  108. .option-form {
  109. font-size: 16px;
  110. width: 300px;
  111. height: 100px;
  112. }
  113. .action-button {
  114. font-size: 18px;
  115. width: 50%;
  116. height: 75px;
  117. display: none;
  118. }
  119. #victim-table {
  120. display: none;
  121. margin: auto;
  122. width: 80%;
  123. }
  124. .victim-table-cell {
  125. width: 10%;
  126. }
  127. .reveal-if-active {
  128. opacity: 0;
  129. max-height: 0;
  130. overflow: hidden;
  131. }
  132. .reveal-if-active-2 {
  133. opacity: 0;
  134. max-height: 0;
  135. overflow: hidden;
  136. }
  137. input[type="radio"]:checked ~ .reveal-if-active,
  138. input[type="checkbox"]:checked ~ .reveal-if-active {
  139. opacity: 1;
  140. max-height: 200px; /* little bit of a magic number :( */
  141. overflow: visible;
  142. }
  143. input.sub[type="radio"]:checked ~ .reveal-if-active-2,
  144. input.sub[type="checkbox"]:checked ~ .reveal-if-active-2 {
  145. opacity: 1;
  146. max-height: 200px; /* little bit of a magic number :( */
  147. overflow: visible;
  148. }
  149. .flex-outer li,
  150. .flex-inner {
  151. display: flex;
  152. flex-wrap: wrap;
  153. align-items: center;
  154. width: 500px;
  155. }
  156. .flex-outer > li > label,
  157. .flex-outer > div > div > li > label,
  158. .flex-outer li p {
  159. flex: 1 0 120px;
  160. max-width: 220px;
  161. }
  162. .flex-outer > li > label + *,
  163. .flex-outer > div > div > li > label + *,
  164. .flex-inner {
  165. flex: 1 0 220px;
  166. }
  167. body.light .has-tooltip {
  168. position: relative;
  169. display: inline-block;
  170. border-bottom: 1px dotted black;
  171. }
  172. body.dark .has-tooltip {
  173. position: relative;
  174. display: inline-block;
  175. border-bottom: 1px dotted white;
  176. }
  177. body.light a {
  178. color: #0000FF;
  179. text-decoration: none;
  180. }
  181. body.light a:visited {
  182. color: #0000AA;
  183. }
  184. body.light a:hover {
  185. color: #0000EE;
  186. }
  187. body.dark a {
  188. color: #0000FF;
  189. text-decoration: none;
  190. }
  191. body.dark a:visited {
  192. color: #0000DD;
  193. }
  194. body.dark a:hover {
  195. color: #0000EE;
  196. }
  197. #grow-panel {
  198. width: 100%;
  199. }
  200. th {
  201. font-weight: normal;
  202. }
  203. .growth-option {
  204. display: none;
  205. }
  206. .growth-option+label {
  207. display: none;
  208. }
  209. .growth-label {
  210. font-size: 20pt;
  211. }
  212. input[type="radio"]:checked+
  213. .growth-label {
  214. font-weight: bold;
  215. }
  216. .growth-amount {
  217. width: 50%;
  218. }
  219. ul {
  220. list-style: none;
  221. }
  222. .action-tab {
  223. flex-wrap: wrap;
  224. display: none;
  225. width: 100%;
  226. }
  227. .action-part-button {
  228. border: 1px;
  229. font-size: 30px;
  230. width: 50%;
  231. height: 100px;
  232. display: none;
  233. }
  234. .action-part-button.active {
  235. border: 1px;
  236. font-size: 30px;
  237. width: 50%;
  238. height: 100px;
  239. background: #555;
  240. }