big steppy
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 

430 rindas
5.4 KiB

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