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.
 
 
 

386 lines
4.9 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 form input {
  12. color: #eee;
  13. background: #444;
  14. }
  15. body.dark form select {
  16. color: #eee;
  17. background: #444;
  18. }
  19. body.light button {
  20. color: #000;
  21. background: #ddd;
  22. }
  23. body.dark button {
  24. color: #eee;
  25. background: #111;
  26. }
  27. body.dark div {
  28. background: #111;
  29. }
  30. .game-area {
  31. display: flex;
  32. margin: auto;
  33. }
  34. @media (max-aspect-ratio: 16/9){
  35. .game-area {
  36. width: 100%
  37. }
  38. }
  39. @media (min-aspect-ratio: 16/10){
  40. .game-area {
  41. width: 75%
  42. }
  43. }
  44. #log-area {
  45. flex: 5;
  46. display:none;
  47. }
  48. body.light #log {
  49. height: 900px;
  50. overflow: auto;
  51. color: #000;
  52. background-color: #fff;
  53. }
  54. body.dark #log {
  55. height: 900px;
  56. overflow: auto;
  57. color: #eee;
  58. background-color: #111;
  59. }
  60. .stat-header-self {
  61. font-weight: bold;
  62. font-size: 150%;
  63. min-width:250px;
  64. }
  65. .stat-header {
  66. font-weight: bold;
  67. font-size: 150%;
  68. min-width:130px;
  69. }
  70. .stat-line {
  71. font-weight: normal;
  72. font-size: 12pt;
  73. }
  74. .stat-line-hidden {
  75. font-weight: normal;
  76. font-size: 12pt;
  77. display: none;
  78. }
  79. .sidebar {
  80. display: none;
  81. flex-wrap: wrap;
  82. flex-direction: column;
  83. text-align: right;
  84. min-width: 250px;
  85. flex: 1;
  86. }
  87. .preset-selector {
  88. height: 25px;
  89. }
  90. .option-container {
  91. margin: auto;
  92. }
  93. .button-container {
  94. flex-wrap: wrap;
  95. flex-direction: column;
  96. flex: 1;
  97. }
  98. .stat-container {
  99. flex-wrap: wrap;
  100. flex-direction: row;
  101. flex: 1
  102. }
  103. .action-part-container {
  104. max-height: 400px;
  105. display: flex;
  106. flex-wrap: wrap;
  107. }
  108. #action-panel {
  109. display: none;
  110. }
  111. .option-button {
  112. font-size: 20px;
  113. width: 120px;
  114. height: 75px;
  115. }
  116. .stat-button {
  117. font-size: 20px;
  118. width: 120px;
  119. height: 75px;
  120. }
  121. .option-form {
  122. font-size: 16px;
  123. width: 300px;
  124. height: 100px;
  125. }
  126. .action-button {
  127. font-size: 18px;
  128. width: 50%;
  129. height: 75px;
  130. display: none;
  131. }
  132. #victim-table {
  133. display: none;
  134. margin: auto;
  135. width: 80%;
  136. }
  137. .victim-table-cell {
  138. width: 10%;
  139. }
  140. .reveal-if-active {
  141. opacity: 0;
  142. max-height: 0;
  143. overflow: hidden;
  144. }
  145. input[type="radio"]:checked ~ .reveal-if-active,
  146. input[type="checkbox"]:checked ~ .reveal-if-active {
  147. opacity: 1;
  148. max-height: 200px; /* little bit of a magic number :( */
  149. overflow: visible;
  150. }
  151. .flex-outer {
  152. width: 100%;
  153. display: flex;
  154. flex-direction: row;
  155. flex-wrap: wrap;
  156. text-align: center;
  157. justify-content: center;
  158. padding: 0px;
  159. }
  160. .custom-category {
  161. text-align: center;
  162. margin: 10px;
  163. width: 500px;
  164. }
  165. .custom-category-sub {
  166. text-align: center;
  167. margin: 10px;
  168. width: 400px;
  169. }
  170. body.light .custom-category {
  171. background: #ddd;
  172. }
  173. body.dark .custom-category {
  174. background: #222;
  175. }
  176. .custom-header-static {
  177. font-size: 200%;
  178. margin: 10px;
  179. display: inline-block;
  180. }
  181. body.light .custom-header-static {
  182. background: #ddd;
  183. }
  184. body.dark .custom-header-static {
  185. background: #555;
  186. }
  187. .custom-header {
  188. font-size: 200%;
  189. margin: 10px;
  190. display: inline-block;
  191. border-style: dotted;
  192. border-width: 1px;
  193. border-length: 5px;
  194. }
  195. body.light .custom-header {
  196. color: #aaa;
  197. background: #ddd;
  198. }
  199. body.dark .custom-header {
  200. color: #555;
  201. background: #222;
  202. }
  203. body.light input[type="checkbox"]:checked+
  204. .custom-header {
  205. color: #000;
  206. border-style: solid;
  207. margin: 10px;
  208. background: #bbb;
  209. }
  210. body.dark input[type="checkbox"]:checked+
  211. .custom-header {
  212. color: #fff;
  213. margin: 10px;
  214. background: #444;
  215. }
  216. .custom-header-checkbox {
  217. display: none;
  218. }
  219. .flex-outer li,
  220. .flex-inner {
  221. display: flex;
  222. flex-wrap: wrap;
  223. align-items: center;
  224. width: 500px;
  225. }
  226. .flex-outer > li > label,
  227. .flex-outer > div > div > li > label,
  228. .flex-outer li p {
  229. flex: 1 0 120px;
  230. max-width: 220px;
  231. }
  232. .flex-outer > li > label + *,
  233. .flex-outer > div > div > li > label + *,
  234. .flex-inner {
  235. flex: 1 0 220px;
  236. }
  237. body.light .has-tooltip {
  238. position: relative;
  239. display: inline-block;
  240. border-bottom: 1px dotted black;
  241. }
  242. body.dark .has-tooltip {
  243. position: relative;
  244. display: inline-block;
  245. border-bottom: 1px dotted white;
  246. }
  247. body.light a {
  248. color: #0000FF;
  249. text-decoration: none;
  250. }
  251. body.light a:visited {
  252. color: #0000AA;
  253. }
  254. body.light a:hover {
  255. color: #0000EE;
  256. }
  257. body.dark a {
  258. color: #0000FF;
  259. text-decoration: none;
  260. }
  261. body.dark a:visited {
  262. color: #0000DD;
  263. }
  264. body.dark a:hover {
  265. color: #0000EE;
  266. }
  267. .character-build {
  268. margin: 50px;
  269. width: 90%;
  270. text-align: center;
  271. }
  272. #grow-panel {
  273. width: 100%;
  274. }
  275. th {
  276. font-weight: normal;
  277. }
  278. .growth-option {
  279. display: none;
  280. }
  281. .growth-option+label {
  282. display: none;
  283. }
  284. .growth-label {
  285. font-size: 20pt;
  286. }
  287. input[type="radio"]:checked+
  288. .growth-label {
  289. font-weight: bold;
  290. }
  291. .growth-amount {
  292. width: 50%;
  293. }
  294. ul {
  295. list-style: none;
  296. }
  297. .action-tab {
  298. flex-wrap: wrap;
  299. display: none;
  300. width: 100%;
  301. }
  302. .action-part-button {
  303. border: 1px;
  304. font-size: 30px;
  305. width: 50%;
  306. height: 100px;
  307. display: none;
  308. }
  309. .action-part-button.active {
  310. border: 1px;
  311. font-size: 30px;
  312. width: 50%;
  313. height: 100px;
  314. background: #555;
  315. }