crunch
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.
 
 
 

247 linhas
2.8 KiB

  1. body {
  2. background: #111;
  3. color: #eee;
  4. height: 100%;
  5. width: 100%;
  6. font-family: Arial;
  7. }
  8. hr {
  9. display: block;
  10. height: 1px;
  11. border: 0;
  12. border-top: 1px solid #ccc;
  13. margin: 1em 0;
  14. padding: 0;
  15. }
  16. a {
  17. color: #7777FF;
  18. text-decoration: none;
  19. }
  20. body.combat {
  21. background: #311;
  22. }
  23. body.explore {
  24. background: #111;
  25. }
  26. body.eaten {
  27. background: #500;
  28. }
  29. button {
  30. background: #222;
  31. color: #eee;
  32. }
  33. #selector-combat {
  34. display: none;
  35. }
  36. .active-button {
  37. }
  38. .inactive-button {
  39. background: #111;
  40. }
  41. .disabled-button {
  42. background: repeating-linear-gradient(
  43. 45deg,
  44. #111,
  45. #111 10px,
  46. #622 10px,
  47. #622 20px
  48. );
  49. }
  50. .stat-button {
  51. width: 100px;
  52. height: 50px;
  53. font-size: 18px;
  54. user-select: none;
  55. }
  56. #compass {
  57. padding: 10px;
  58. }
  59. .compass-button {
  60. width: 100px;
  61. height: 100px;
  62. font-size: 18px;
  63. user-select: none;
  64. }
  65. #actions {
  66. display: flex;
  67. flex-wrap: wrap;
  68. align-items: start;
  69. height: 100%;
  70. width: 40%;
  71. padding: 15px;
  72. }
  73. .action-button {
  74. flex: 1 0 200px;
  75. height: 50px;
  76. font-size: 18px;
  77. user-select: none;
  78. }
  79. .combat-button {
  80. width: 200px;
  81. height: 50px;
  82. font-size: 18px;
  83. user-select: none;
  84. }
  85. .eaten-button {
  86. width: 200px;
  87. height: 50px;
  88. font-size: 18px;
  89. user-select: none;
  90. }
  91. #combat-desc {
  92. width: 200px;
  93. height: 200px;
  94. margin: 15px;
  95. background: #222;
  96. }
  97. .dialog-button {
  98. width: 300px;
  99. height: 75px;
  100. font-size: 18px;
  101. user-select: none;
  102. }
  103. #dialog {
  104. list-style-type: none;
  105. }
  106. #combat {
  107. list-style-type: none;
  108. }
  109. #eaten {
  110. list-style-type: none;
  111. }
  112. #log {
  113. background: #222;
  114. width: 100%;
  115. height: 100%;
  116. flex: 3;
  117. overflow: auto;
  118. }
  119. .stats {
  120. float: right;
  121. flex: 1;
  122. }
  123. #player-stats {
  124. height: 75%;
  125. }
  126. #foe-stats {
  127. display: none;
  128. height: 50%;
  129. }
  130. .stat-line {
  131. }
  132. #game-and-stats {
  133. margin: auto;
  134. height: 500px;
  135. max-width: 1000px;
  136. padding: 15px;
  137. display: flex;
  138. }
  139. #footer {
  140. max-width: 800px;
  141. margin: auto;
  142. }
  143. .selector {
  144. display: flex;
  145. }
  146. #game {
  147. display: none;
  148. }
  149. #create {
  150. color: #eee;
  151. padding: 25px;
  152. text-align: center;
  153. }
  154. #character-form-list {
  155. margin: auto;
  156. list-style-type: none;
  157. }
  158. #character-form {
  159. font-size: 20pt;
  160. }
  161. .pref-radio {
  162. display: none;
  163. }
  164. .pref-radio + label {
  165. color: #666;
  166. width: 150px;
  167. }
  168. .pref-gray {
  169. background: #111 !important;
  170. color: #333 !important;
  171. }
  172. .pref-radio:checked + label.pref-disable {
  173. background: #711;
  174. color: #eee;
  175. }
  176. .pref-radio:checked + label.pref-avoid {
  177. background: #a41;
  178. color: #eee;
  179. }
  180. .pref-radio:checked + label.pref-enable {
  181. background: #3a3;
  182. color: #eee;
  183. }
  184. .pref-radio:checked + label.pref-prefer {
  185. background: #44a2c7;
  186. color: #eee;
  187. }
  188. .pref-select {
  189. display: flex;
  190. align-items: center;
  191. justify-content: center;
  192. }
  193. .pref-list {
  194. text-align: center;
  195. margin: auto;
  196. user-select: none;
  197. }
  198. .pref-type {
  199. width: 150px;
  200. }