big steppy
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

187 linhas
2.4 KiB

  1. body {
  2. background: #eee;
  3. font-family: Arial;
  4. }
  5. .game-area {
  6. display: flex;
  7. margin: auto;
  8. }
  9. @media (max-aspect-ratio: 1.2){
  10. .game-area {
  11. width: 100%
  12. }
  13. }
  14. @media (min-aspect-ratio: 16/9){
  15. .game-area {
  16. width: 75%
  17. }
  18. }
  19. #log-area {
  20. flex: 3;
  21. display:none;
  22. }
  23. #log {
  24. height: 600px;
  25. overflow: auto;
  26. background-color: #fff;
  27. }
  28. .stat-header-self {
  29. font-weight: bold;
  30. font-size: 150%;
  31. min-width:250px;
  32. }
  33. .stat-header {
  34. font-weight: bold;
  35. font-size: 150%;
  36. min-width:130px;
  37. }
  38. .stat-line {
  39. font-weight: normal;
  40. font-size: 12pt;
  41. }
  42. .stat-container {
  43. display: none;
  44. flex-wrap: wrap;
  45. flex-direction: column;
  46. text-align: right;
  47. flex: 1;
  48. }
  49. .preset-selector {
  50. height: 25px;
  51. }
  52. .option-container {
  53. margin: auto;
  54. }
  55. .button-container {
  56. flex-wrap: wrap;
  57. max-width: 300px;
  58. height: 400px;
  59. flex: 2;
  60. }
  61. #action-panel {
  62. display: none;
  63. }
  64. .option-button {
  65. font-size: 20px;
  66. width: 120px;
  67. height: 75px;
  68. }
  69. .option-form {
  70. font-size: 16px;
  71. width: 300px;
  72. height: 100px;
  73. }
  74. .action-button {
  75. font-size: 24px;
  76. width: 120px;
  77. height: 60px;
  78. }
  79. #victim-table {
  80. margin: auto;
  81. width: 80%;
  82. }
  83. .victim-table-cell {
  84. width: 10%;
  85. }
  86. .reveal-if-active {
  87. opacity: 0;
  88. max-height: 0;
  89. overflow: hidden;
  90. }
  91. .reveal-if-active-2 {
  92. opacity: 0;
  93. max-height: 0;
  94. overflow: hidden;
  95. }
  96. input[type="radio"]:checked ~ .reveal-if-active,
  97. input[type="checkbox"]:checked ~ .reveal-if-active {
  98. opacity: 1;
  99. max-height: 200px; /* little bit of a magic number :( */
  100. overflow: visible;
  101. }
  102. input.sub[type="radio"]:checked ~ .reveal-if-active-2,
  103. input.sub[type="checkbox"]:checked ~ .reveal-if-active-2 {
  104. opacity: 1;
  105. max-height: 200px; /* little bit of a magic number :( */
  106. overflow: visible;
  107. }
  108. .flex-outer li,
  109. .flex-inner {
  110. display: flex;
  111. flex-wrap: wrap;
  112. align-items: center;
  113. width: 500px;
  114. }
  115. .flex-outer > li > label,
  116. .flex-outer > div > div > li > label,
  117. .flex-outer li p {
  118. flex: 1 0 120px;
  119. max-width: 220px;
  120. }
  121. .flex-outer > li > label + *,
  122. .flex-outer > div > div > li > label + *,
  123. .flex-inner {
  124. flex: 1 0 220px;
  125. }
  126. .has-tooltip {
  127. position: relative;
  128. display: inline-block;
  129. border-bottom: 1px dotted black;
  130. }
  131. #grow-panel {
  132. width: 100%;
  133. }
  134. th {
  135. font-weight: normal;
  136. }
  137. .growth-option {
  138. display: none;
  139. }
  140. .growth-label {
  141. font-size: 20pt;
  142. }
  143. input[type="radio"]:checked+
  144. .growth-label {
  145. font-weight: bold;
  146. }
  147. .growth-amount {
  148. width: 50%;
  149. }
  150. ul {
  151. list-style: none;
  152. }