big steppy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

434 строки
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. 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: 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. 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 label,
  251. .flex-outer > div > div > li > label {
  252. flex: 1 0 150px;
  253. }
  254. .flex-outer > li > label + *,
  255. .flex-outer label + *,
  256. .flex-inner {
  257. flex: 1 0 200px;
  258. }
  259. .flex-outer-sub {
  260. padding: 0px;
  261. }
  262. .flex-outer-sub li,
  263. .flex-inner {
  264. display: flex;
  265. flex-wrap: wrap;
  266. align-items: center;
  267. width: 400px;
  268. }
  269. .flex-outer-sub label,
  270. .flex-outer-sub > div > div > li > label {
  271. flex: 1 0 150px;
  272. }
  273. .flex-outer-sub > li > label + *,
  274. .flex-outer-sub label + *,
  275. .flex-inner {
  276. flex: 1 0 200px;
  277. }
  278. body.light .has-tooltip {
  279. position: relative;
  280. display: inline-block;
  281. border-bottom: 1px dotted black;
  282. }
  283. body.dark .has-tooltip {
  284. position: relative;
  285. display: inline-block;
  286. border-bottom: 1px dotted white;
  287. }
  288. body.light a {
  289. color: #0000FF;
  290. text-decoration: none;
  291. }
  292. body.light a:visited {
  293. color: #0000AA;
  294. }
  295. body.light a:hover {
  296. color: #0000EE;
  297. }
  298. body.dark a {
  299. color: #0000FF;
  300. text-decoration: none;
  301. }
  302. body.dark a:visited {
  303. color: #0000DD;
  304. }
  305. body.dark a:hover {
  306. color: #0000EE;
  307. }
  308. .character-build {
  309. margin: 50px;
  310. width: 90%;
  311. text-align: center;
  312. }
  313. #grow-panel {
  314. width: 100%;
  315. }
  316. th {
  317. font-weight: normal;
  318. }
  319. .growth-option {
  320. display: none;
  321. }
  322. .growth-option+label {
  323. display: none;
  324. }
  325. .growth-label {
  326. font-size: 20pt;
  327. }
  328. input[type="radio"]:checked+
  329. .growth-label {
  330. font-weight: bold;
  331. }
  332. .growth-amount {
  333. width: 50%;
  334. }
  335. ul {
  336. list-style: none;
  337. }
  338. .action-tab {
  339. flex-wrap: wrap;
  340. display: none;
  341. width: 100%;
  342. }
  343. .action-part-button {
  344. border: 1px;
  345. font-size: 30px;
  346. width: 50%;
  347. height: 100px;
  348. display: none;
  349. }
  350. .action-part-button.active {
  351. border: 1px;
  352. font-size: 30px;
  353. width: 50%;
  354. height: 100px;
  355. background: #555;
  356. }