big steppy
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 

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