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

407 строки
5.2 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. body.dark input {
  15. color: #eee;
  16. background: #444;
  17. }
  18. body.dark select {
  19. color: #eee;
  20. background: #444;
  21. }
  22. body.light button {
  23. color: #000;
  24. background: #ddd;
  25. }
  26. body.dark button {
  27. color: #eee;
  28. background: #111;
  29. }
  30. body.dark div {
  31. background: #111;
  32. }
  33. .game-area {
  34. display: flex;
  35. margin: auto;
  36. }
  37. @media (max-aspect-ratio: 16/9){
  38. .game-area {
  39. width: 100%
  40. }
  41. }
  42. @media (min-aspect-ratio: 16/10){
  43. .game-area {
  44. width: 75%
  45. }
  46. }
  47. #log-area {
  48. flex: 5;
  49. display:none;
  50. }
  51. body.light #log {
  52. height: 900px;
  53. overflow: auto;
  54. color: #000;
  55. background-color: #fff;
  56. }
  57. body.dark #log {
  58. height: 900px;
  59. overflow: auto;
  60. color: #eee;
  61. background-color: #111;
  62. }
  63. .stat-header-self {
  64. font-weight: bold;
  65. font-size: 150%;
  66. min-width:250px;
  67. }
  68. .stat-header {
  69. font-weight: bold;
  70. font-size: 150%;
  71. min-width:130px;
  72. }
  73. .stat-line {
  74. font-weight: normal;
  75. font-size: 12pt;
  76. }
  77. .stat-line-hidden {
  78. font-weight: normal;
  79. font-size: 12pt;
  80. display: none;
  81. }
  82. .sidebar {
  83. display: none;
  84. flex-wrap: wrap;
  85. flex-direction: column;
  86. text-align: right;
  87. min-width: 250px;
  88. flex: 1;
  89. }
  90. .preset-selector {
  91. height: 25px;
  92. }
  93. .option-container {
  94. margin: auto;
  95. }
  96. .button-container {
  97. flex-wrap: wrap;
  98. flex-direction: column;
  99. flex: 1;
  100. }
  101. .stat-container {
  102. flex-wrap: wrap;
  103. flex-direction: row;
  104. flex: 1
  105. }
  106. .action-part-container {
  107. max-height: 400px;
  108. display: flex;
  109. flex-wrap: wrap;
  110. }
  111. #action-panel {
  112. display: none;
  113. }
  114. .option-button {
  115. font-size: 20px;
  116. width: 120px;
  117. height: 75px;
  118. }
  119. .stat-button {
  120. font-size: 20px;
  121. width: 120px;
  122. height: 75px;
  123. }
  124. .option-form {
  125. font-size: 16px;
  126. width: 300px;
  127. height: 100px;
  128. }
  129. .action-button {
  130. font-size: 18px;
  131. width: 50%;
  132. height: 75px;
  133. display: none;
  134. }
  135. #victim-table {
  136. display: none;
  137. margin: auto;
  138. width: 80%;
  139. }
  140. .victim-table-cell {
  141. width: 10%;
  142. }
  143. .reveal-if-active {
  144. opacity: 0;
  145. max-height: 0;
  146. overflow: hidden;
  147. }
  148. input[type="radio"]:checked ~ .reveal-if-active,
  149. input[type="checkbox"]:checked ~ .reveal-if-active {
  150. opacity: 1;
  151. max-height: 200px; /* little bit of a magic number :( */
  152. overflow: visible;
  153. }
  154. .flex-outer {
  155. width: 100%;
  156. display: flex;
  157. flex-direction: row;
  158. flex-wrap: wrap;
  159. text-align: center;
  160. justify-content: center;
  161. padding: 0px;
  162. }
  163. .custom-category {
  164. text-align: center;
  165. margin: 10px;
  166. width: 500px;
  167. }
  168. .custom-category-sub {
  169. text-align: center;
  170. margin: 10px;
  171. width: 400px;
  172. }
  173. body.light .custom-category {
  174. background: #ddd;
  175. }
  176. body.dark .custom-category {
  177. background: #222;
  178. }
  179. .custom-header-static {
  180. font-size: 200%;
  181. margin: 10px;
  182. display: inline-block;
  183. }
  184. body.light .custom-header-static {
  185. background: #ddd;
  186. }
  187. body.dark .custom-header-static {
  188. background: #555;
  189. }
  190. .custom-header {
  191. font-size: 200%;
  192. margin: 10px;
  193. display: inline-block;
  194. border-style: dotted;
  195. border-width: 1px;
  196. border-length: 5px;
  197. }
  198. body.light .custom-header {
  199. color: #aaa;
  200. background: #ddd;
  201. }
  202. body.dark .custom-header {
  203. color: #555;
  204. background: #222;
  205. }
  206. body.light input[type="checkbox"]:checked+
  207. .custom-header {
  208. color: #000;
  209. border-style: solid;
  210. margin: 10px;
  211. background: #bbb;
  212. }
  213. body.dark input[type="checkbox"]:checked+
  214. .custom-header {
  215. color: #fff;
  216. margin: 10px;
  217. background: #444;
  218. }
  219. .custom-header-checkbox {
  220. display: none;
  221. }
  222. .flex-outer li,
  223. .flex-inner {
  224. display: flex;
  225. flex-wrap: wrap;
  226. align-items: center;
  227. width: 500px;
  228. }
  229. .flex-outer label,
  230. .flex-outer > div > div > li > label {
  231. flex: 1 0 150px;
  232. }
  233. .flex-outer > li > label + *,
  234. .flex-outer label + *,
  235. .flex-inner {
  236. flex: 1 0 200px;
  237. }
  238. .flex-outer-sub li,
  239. .flex-inner {
  240. display: flex;
  241. flex-wrap: wrap;
  242. align-items: center;
  243. width: 400px;
  244. }
  245. .flex-outer-sub label,
  246. .flex-outer-sub > div > div > li > label {
  247. flex: 1 0 150px;
  248. }
  249. .flex-outer-sub > li > label + *,
  250. .flex-outer-sub label + *,
  251. .flex-inner {
  252. flex: 1 0 200px;
  253. }
  254. body.light .has-tooltip {
  255. position: relative;
  256. display: inline-block;
  257. border-bottom: 1px dotted black;
  258. }
  259. body.dark .has-tooltip {
  260. position: relative;
  261. display: inline-block;
  262. border-bottom: 1px dotted white;
  263. }
  264. body.light a {
  265. color: #0000FF;
  266. text-decoration: none;
  267. }
  268. body.light a:visited {
  269. color: #0000AA;
  270. }
  271. body.light a:hover {
  272. color: #0000EE;
  273. }
  274. body.dark a {
  275. color: #0000FF;
  276. text-decoration: none;
  277. }
  278. body.dark a:visited {
  279. color: #0000DD;
  280. }
  281. body.dark a:hover {
  282. color: #0000EE;
  283. }
  284. .character-build {
  285. margin: 50px;
  286. width: 90%;
  287. text-align: center;
  288. }
  289. #grow-panel {
  290. width: 100%;
  291. }
  292. th {
  293. font-weight: normal;
  294. }
  295. .growth-option {
  296. display: none;
  297. }
  298. .growth-option+label {
  299. display: none;
  300. }
  301. .growth-label {
  302. font-size: 20pt;
  303. }
  304. input[type="radio"]:checked+
  305. .growth-label {
  306. font-weight: bold;
  307. }
  308. .growth-amount {
  309. width: 50%;
  310. }
  311. ul {
  312. list-style: none;
  313. }
  314. .action-tab {
  315. flex-wrap: wrap;
  316. display: none;
  317. width: 100%;
  318. }
  319. .action-part-button {
  320. border: 1px;
  321. font-size: 30px;
  322. width: 50%;
  323. height: 100px;
  324. display: none;
  325. }
  326. .action-part-button.active {
  327. border: 1px;
  328. font-size: 30px;
  329. width: 50%;
  330. height: 100px;
  331. background: #555;
  332. }