big steppy
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

460 wiersze
6.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. width: 100%;
  107. display: flex;
  108. flex-wrap: wrap;
  109. flex-direction: row;
  110. flex: 1
  111. }
  112. .action-part-container {
  113. max-height: 1000px;
  114. display: flex;
  115. flex-wrap: wrap;
  116. }
  117. #action-panel {
  118. display: none;
  119. }
  120. .option-button {
  121. font-size: 20px;
  122. width: 120px;
  123. height: 75px;
  124. }
  125. #button-start {
  126. width:200px;
  127. height:100px;
  128. font-size: 32px;
  129. }
  130. .option-form {
  131. font-size: 16px;
  132. width: 300px;
  133. height: 100px;
  134. }
  135. .stat-button {
  136. font-size: 18px;
  137. width: 50%;
  138. height: 75px;
  139. }
  140. .action-button {
  141. font-size: 18px;
  142. width: 50%;
  143. height: 75px;
  144. display: none;
  145. }
  146. #victim-table {
  147. display: none;
  148. margin: auto;
  149. width: 80%;
  150. }
  151. .victim-table-cell {
  152. width: 10%;
  153. }
  154. .reveal-if-active {
  155. opacity: 0;
  156. max-height: 0;
  157. overflow: hidden;
  158. }
  159. input[type="radio"]:checked ~ .reveal-if-active,
  160. input[type="checkbox"]:checked ~ .reveal-if-active {
  161. opacity: 1;
  162. max-height: 500000px; /* little bit of a magic number :( */
  163. overflow: visible;
  164. }
  165. .flex-outer {
  166. width: 100%;
  167. display: flex;
  168. flex-direction: row;
  169. flex-wrap: wrap;
  170. text-align: center;
  171. justify-content: center;
  172. padding: 0px;
  173. }
  174. .custom-category {
  175. text-align: center;
  176. margin: 10px;
  177. width: 500px;
  178. }
  179. .custom-category-sub {
  180. text-align: center;
  181. margin: 10px;
  182. width: 400px;
  183. padding: 0px;
  184. margin: 0px 50px;
  185. }
  186. body.light .custom-category {
  187. background: #ddd;
  188. }
  189. body.dark .custom-category {
  190. background: #222;
  191. }
  192. body.dark .custom-category div {
  193. background: #222;
  194. }
  195. .custom-header-static {
  196. font-size: 250%;
  197. margin: 10px;
  198. display: inline-block;
  199. }
  200. body.light .custom-header-static {
  201. background: #ddd;
  202. }
  203. body.dark .custom-header-static {
  204. background: #555;
  205. }
  206. .custom-header {
  207. font-size: 250%;
  208. margin: 10px;
  209. display: inline-block;
  210. border-style: dotted;
  211. border-width: 1px;
  212. border-length: 5px;
  213. }
  214. .custom-category-sub .custom-header {
  215. font-size: 200%;
  216. }
  217. body.light .custom-header {
  218. color: #aaa;
  219. background: #ddd;
  220. }
  221. body.dark .custom-header {
  222. color: #555;
  223. background: #222;
  224. }
  225. body.light input[type="checkbox"]:checked+
  226. .custom-header {
  227. color: #000;
  228. border-style: solid;
  229. margin: 10px;
  230. background: #bbb;
  231. }
  232. body.dark input[type="checkbox"]:checked+
  233. .custom-header {
  234. color: #fff;
  235. border-style: solid;
  236. margin: 10px;
  237. background: #444;
  238. }
  239. .custom-header-checkbox {
  240. display: none;
  241. }
  242. .flex-outer li,
  243. .flex-inner {
  244. display: flex;
  245. flex-wrap: wrap;
  246. align-items: center;
  247. text-align: center;
  248. width: 500px;
  249. }
  250. .flex-outer input[type="radio"],
  251. .flex-outer input[type="checkbox"] {
  252. display: none;
  253. }
  254. .flex-outer input[type="radio"] + label:not(.custom-header),
  255. .flex-outer input[type="checkbox"] + label:not(.custom-header) {
  256. user-select: none;
  257. flex: 1 0 400px;
  258. font-size: 24px;
  259. }
  260. body.dark .flex-outer input[type="radio"] + label:not(.custom-header),
  261. body.dark .flex-outer input[type="checkbox"] + label:not(.custom-header) {
  262. color: #888;
  263. background: #311;
  264. }
  265. body.dark .flex-outer input[type="radio"]:checked + label:not(.custom-header),
  266. body.dark .flex-outer input[type="checkbox"]:checked + label:not(.custom-header) {
  267. color: #fff;
  268. background: #131;
  269. }
  270. body.light .flex-outer input[type="radio"] + label:not(.custom-header),
  271. body.light .flex-outer input[type="checkbox"] + label:not(.custom-header) {
  272. color: #555;
  273. background: #faa;
  274. }
  275. body.light .flex-outer input[type="radio"]:checked + label:not(.custom-header),
  276. body.light .flex-outer input[type="checkbox"]:checked + label:not(.custom-header) {
  277. color: #111;
  278. background: #afa;
  279. }
  280. .flex-outer label {
  281. flex: 0 1 40%;
  282. }
  283. .flex-outer label + * {
  284. flex: 1 1 20%;
  285. }
  286. .preview {
  287. flex: 1 1 10%;
  288. }
  289. .flex-outer-sub {
  290. padding: 0px;
  291. align-items: center;
  292. }
  293. .flex-outer-sub li {
  294. display: flex;
  295. flex-wrap: wrap;
  296. align-items: center;
  297. width: 80%;
  298. }
  299. body.light .has-tooltip {
  300. position: relative;
  301. display: inline-block;
  302. border-bottom: 1px dotted black;
  303. }
  304. body.dark .has-tooltip {
  305. position: relative;
  306. display: inline-block;
  307. border-bottom: 1px dotted white;
  308. }
  309. body.light a {
  310. color: #0000FF;
  311. text-decoration: none;
  312. }
  313. body.light a:visited {
  314. color: #0000AA;
  315. }
  316. body.light a:hover {
  317. color: #0000EE;
  318. }
  319. body.dark a {
  320. color: #0000FF;
  321. text-decoration: none;
  322. }
  323. body.dark a:visited {
  324. color: #0000DD;
  325. }
  326. body.dark a:hover {
  327. color: #0000EE;
  328. }
  329. .character-build {
  330. margin: 50px;
  331. width: 90%;
  332. text-align: center;
  333. }
  334. #grow-panel {
  335. width: 100%;
  336. }
  337. th {
  338. font-weight: normal;
  339. }
  340. .growth-option {
  341. display: none;
  342. }
  343. .growth-option+label {
  344. display: none;
  345. }
  346. .growth-label {
  347. font-size: 20pt;
  348. }
  349. input[type="radio"]:checked+
  350. .growth-label {
  351. font-weight: bold;
  352. }
  353. .growth-amount {
  354. width: 50%;
  355. }
  356. ul {
  357. list-style: none;
  358. }
  359. .action-tab {
  360. flex-wrap: wrap;
  361. display: none;
  362. width: 100%;
  363. }
  364. .action-part-button {
  365. border: 1px;
  366. font-size: 30px;
  367. width: 50%;
  368. height: 100px;
  369. display: none;
  370. }
  371. .action-part-button.active {
  372. border: 1px;
  373. font-size: 30px;
  374. width: 50%;
  375. height: 100px;
  376. background: #555;
  377. }