big steppy
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

426 satır
5.4 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: 500px;
  181. padding: 0px;
  182. margin: 0px;
  183. }
  184. body.light .custom-category {
  185. background: #ddd;
  186. }
  187. body.dark .custom-category {
  188. background: #222;
  189. }
  190. .custom-header-static {
  191. font-size: 200%;
  192. margin: 10px;
  193. display: inline-block;
  194. }
  195. body.light .custom-header-static {
  196. background: #ddd;
  197. }
  198. body.dark .custom-header-static {
  199. background: #555;
  200. }
  201. .custom-header {
  202. font-size: 200%;
  203. margin: 10px;
  204. display: inline-block;
  205. border-style: dotted;
  206. border-width: 1px;
  207. border-length: 5px;
  208. }
  209. body.light .custom-header {
  210. color: #aaa;
  211. background: #ddd;
  212. }
  213. body.dark .custom-header {
  214. color: #555;
  215. background: #222;
  216. }
  217. body.light input[type="checkbox"]:checked+
  218. .custom-header {
  219. color: #000;
  220. border-style: solid;
  221. margin: 10px;
  222. background: #bbb;
  223. }
  224. body.dark input[type="checkbox"]:checked+
  225. .custom-header {
  226. color: #fff;
  227. border-style: solid;
  228. margin: 10px;
  229. background: #444;
  230. }
  231. .custom-header-checkbox {
  232. display: none;
  233. }
  234. .flex-outer li,
  235. .flex-inner {
  236. display: flex;
  237. flex-wrap: wrap;
  238. align-items: center;
  239. text-align: center;
  240. width: 500px;
  241. }
  242. .flex-outer label,
  243. .flex-outer > div > div > li > label {
  244. flex: 1 0 150px;
  245. }
  246. .flex-outer > li > label + *,
  247. .flex-outer label + *,
  248. .flex-inner {
  249. flex: 1 0 200px;
  250. }
  251. .flex-outer-sub {
  252. padding: 0px;
  253. }
  254. .flex-outer-sub li,
  255. .flex-inner {
  256. display: flex;
  257. flex-wrap: wrap;
  258. align-items: center;
  259. width: 500px;
  260. }
  261. .flex-outer-sub label,
  262. .flex-outer-sub > div > div > li > label {
  263. flex: 1 0 150px;
  264. }
  265. .flex-outer-sub > li > label + *,
  266. .flex-outer-sub label + *,
  267. .flex-inner {
  268. flex: 1 0 200px;
  269. }
  270. body.light .has-tooltip {
  271. position: relative;
  272. display: inline-block;
  273. border-bottom: 1px dotted black;
  274. }
  275. body.dark .has-tooltip {
  276. position: relative;
  277. display: inline-block;
  278. border-bottom: 1px dotted white;
  279. }
  280. body.light a {
  281. color: #0000FF;
  282. text-decoration: none;
  283. }
  284. body.light a:visited {
  285. color: #0000AA;
  286. }
  287. body.light a:hover {
  288. color: #0000EE;
  289. }
  290. body.dark a {
  291. color: #0000FF;
  292. text-decoration: none;
  293. }
  294. body.dark a:visited {
  295. color: #0000DD;
  296. }
  297. body.dark a:hover {
  298. color: #0000EE;
  299. }
  300. .character-build {
  301. margin: 50px;
  302. width: 90%;
  303. text-align: center;
  304. }
  305. #grow-panel {
  306. width: 100%;
  307. }
  308. th {
  309. font-weight: normal;
  310. }
  311. .growth-option {
  312. display: none;
  313. }
  314. .growth-option+label {
  315. display: none;
  316. }
  317. .growth-label {
  318. font-size: 20pt;
  319. }
  320. input[type="radio"]:checked+
  321. .growth-label {
  322. font-weight: bold;
  323. }
  324. .growth-amount {
  325. width: 50%;
  326. }
  327. ul {
  328. list-style: none;
  329. }
  330. .action-tab {
  331. flex-wrap: wrap;
  332. display: none;
  333. width: 100%;
  334. }
  335. .action-part-button {
  336. border: 1px;
  337. font-size: 30px;
  338. width: 50%;
  339. height: 100px;
  340. display: none;
  341. }
  342. .action-part-button.active {
  343. border: 1px;
  344. font-size: 30px;
  345. width: 50%;
  346. height: 100px;
  347. background: #555;
  348. }