big steppy
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

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