big steppy
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 

431 řádky
5.5 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. flex-wrap: wrap;
  108. flex-direction: row;
  109. flex: 1
  110. }
  111. .action-part-container {
  112. max-height: 400px;
  113. display: flex;
  114. flex-wrap: wrap;
  115. }
  116. #action-panel {
  117. display: none;
  118. }
  119. .option-button {
  120. font-size: 20px;
  121. width: 120px;
  122. height: 75px;
  123. }
  124. #button-start {
  125. width:200px;
  126. height:100px;
  127. font-size: 32px;
  128. }
  129. .stat-button {
  130. font-size: 20px;
  131. width: 50%;
  132. height: 75px;
  133. display: block;
  134. }
  135. .option-form {
  136. font-size: 16px;
  137. width: 300px;
  138. height: 100px;
  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: 200px; /* 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. .custom-header-static {
  193. font-size: 250%;
  194. margin: 10px;
  195. display: inline-block;
  196. }
  197. body.light .custom-header-static {
  198. background: #ddd;
  199. }
  200. body.dark .custom-header-static {
  201. background: #555;
  202. }
  203. .custom-header {
  204. font-size: 250%;
  205. margin: 10px;
  206. display: inline-block;
  207. border-style: dotted;
  208. border-width: 1px;
  209. border-length: 5px;
  210. }
  211. .custom-category-sub .custom-header {
  212. font-size: 200%;
  213. }
  214. body.light .custom-header {
  215. color: #aaa;
  216. background: #ddd;
  217. }
  218. body.dark .custom-header {
  219. color: #555;
  220. background: #222;
  221. }
  222. body.light input[type="checkbox"]:checked+
  223. .custom-header {
  224. color: #000;
  225. border-style: solid;
  226. margin: 10px;
  227. background: #bbb;
  228. }
  229. body.dark input[type="checkbox"]:checked+
  230. .custom-header {
  231. color: #fff;
  232. border-style: solid;
  233. margin: 10px;
  234. background: #444;
  235. }
  236. .custom-header-checkbox {
  237. display: none;
  238. }
  239. .flex-outer li,
  240. .flex-inner {
  241. display: flex;
  242. flex-wrap: wrap;
  243. align-items: center;
  244. text-align: center;
  245. width: 500px;
  246. }
  247. .flex-outer label,
  248. .flex-outer > div > div > li > label {
  249. flex: 1 0 150px;
  250. }
  251. .flex-outer > li > label + *,
  252. .flex-outer label + *,
  253. .flex-inner {
  254. flex: 1 0 200px;
  255. }
  256. .flex-outer-sub {
  257. padding: 0px;
  258. }
  259. .flex-outer-sub li,
  260. .flex-inner {
  261. display: flex;
  262. flex-wrap: wrap;
  263. align-items: center;
  264. width: 400px;
  265. }
  266. .flex-outer-sub label,
  267. .flex-outer-sub > div > div > li > label {
  268. flex: 1 0 150px;
  269. }
  270. .flex-outer-sub > li > label + *,
  271. .flex-outer-sub label + *,
  272. .flex-inner {
  273. flex: 1 0 200px;
  274. }
  275. body.light .has-tooltip {
  276. position: relative;
  277. display: inline-block;
  278. border-bottom: 1px dotted black;
  279. }
  280. body.dark .has-tooltip {
  281. position: relative;
  282. display: inline-block;
  283. border-bottom: 1px dotted white;
  284. }
  285. body.light a {
  286. color: #0000FF;
  287. text-decoration: none;
  288. }
  289. body.light a:visited {
  290. color: #0000AA;
  291. }
  292. body.light a:hover {
  293. color: #0000EE;
  294. }
  295. body.dark a {
  296. color: #0000FF;
  297. text-decoration: none;
  298. }
  299. body.dark a:visited {
  300. color: #0000DD;
  301. }
  302. body.dark a:hover {
  303. color: #0000EE;
  304. }
  305. .character-build {
  306. margin: 50px;
  307. width: 90%;
  308. text-align: center;
  309. }
  310. #grow-panel {
  311. width: 100%;
  312. }
  313. th {
  314. font-weight: normal;
  315. }
  316. .growth-option {
  317. display: none;
  318. }
  319. .growth-option+label {
  320. display: none;
  321. }
  322. .growth-label {
  323. font-size: 20pt;
  324. }
  325. input[type="radio"]:checked+
  326. .growth-label {
  327. font-weight: bold;
  328. }
  329. .growth-amount {
  330. width: 50%;
  331. }
  332. ul {
  333. list-style: none;
  334. }
  335. .action-tab {
  336. flex-wrap: wrap;
  337. display: none;
  338. width: 100%;
  339. }
  340. .action-part-button {
  341. border: 1px;
  342. font-size: 30px;
  343. width: 50%;
  344. height: 100px;
  345. display: none;
  346. }
  347. .action-part-button.active {
  348. border: 1px;
  349. font-size: 30px;
  350. width: 50%;
  351. height: 100px;
  352. background: #555;
  353. }