big steppy
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 

366 líneas
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. }
  170. body.light .custom-category {
  171. background: #ddd;
  172. }
  173. body.dark .custom-category {
  174. background: #222;
  175. }
  176. .custom-header {
  177. font-size: 200%;
  178. margin: 10px;
  179. display: inline-block;
  180. border-style: solid;
  181. border-width: 1px;
  182. }
  183. body.light .custom-header {
  184. background: #ddd;
  185. }
  186. body.dark .custom-header {
  187. background: #555;
  188. }
  189. body.light input[type="checkbox"]:checked+
  190. .custom-header {
  191. margin: 10px;
  192. background: #bbb;
  193. }
  194. body.dark input[type="checkbox"]:checked+
  195. .custom-header {
  196. margin: 10px;
  197. background: #000;
  198. }
  199. .custom-header-checkbox {
  200. display: none;
  201. }
  202. .flex-outer li,
  203. .flex-inner {
  204. display: flex;
  205. flex-wrap: wrap;
  206. align-items: center;
  207. width: 500px;
  208. }
  209. .flex-outer > li > label,
  210. .flex-outer > div > div > li > label,
  211. .flex-outer li p {
  212. flex: 1 0 120px;
  213. max-width: 220px;
  214. }
  215. .flex-outer > li > label + *,
  216. .flex-outer > div > div > li > label + *,
  217. .flex-inner {
  218. flex: 1 0 220px;
  219. }
  220. body.light .has-tooltip {
  221. position: relative;
  222. display: inline-block;
  223. border-bottom: 1px dotted black;
  224. }
  225. body.dark .has-tooltip {
  226. position: relative;
  227. display: inline-block;
  228. border-bottom: 1px dotted white;
  229. }
  230. body.light a {
  231. color: #0000FF;
  232. text-decoration: none;
  233. }
  234. body.light a:visited {
  235. color: #0000AA;
  236. }
  237. body.light a:hover {
  238. color: #0000EE;
  239. }
  240. body.dark a {
  241. color: #0000FF;
  242. text-decoration: none;
  243. }
  244. body.dark a:visited {
  245. color: #0000DD;
  246. }
  247. body.dark a:hover {
  248. color: #0000EE;
  249. }
  250. .character-build {
  251. width: 90%;
  252. text-align: center;
  253. }
  254. #grow-panel {
  255. width: 100%;
  256. }
  257. th {
  258. font-weight: normal;
  259. }
  260. .growth-option {
  261. display: none;
  262. }
  263. .growth-option+label {
  264. display: none;
  265. }
  266. .growth-label {
  267. font-size: 20pt;
  268. }
  269. input[type="radio"]:checked+
  270. .growth-label {
  271. font-weight: bold;
  272. }
  273. .growth-amount {
  274. width: 50%;
  275. }
  276. ul {
  277. list-style: none;
  278. }
  279. .action-tab {
  280. flex-wrap: wrap;
  281. display: none;
  282. width: 100%;
  283. }
  284. .action-part-button {
  285. border: 1px;
  286. font-size: 30px;
  287. width: 50%;
  288. height: 100px;
  289. display: none;
  290. }
  291. .action-part-button.active {
  292. border: 1px;
  293. font-size: 30px;
  294. width: 50%;
  295. height: 100px;
  296. background: #555;
  297. }