big steppy
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 

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