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

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