munch
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 

271 líneas
3.1 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. .option-button {
  57. width: 100px;
  58. height: 50px;
  59. font-size: 18px;
  60. user-select: none;
  61. }
  62. #compass {
  63. padding: 10px;
  64. }
  65. .compass-button {
  66. width: 100px;
  67. height: 100px;
  68. font-size: 18px;
  69. user-select: none;
  70. }
  71. #actions {
  72. display: flex;
  73. flex-wrap: wrap;
  74. align-items: start;
  75. height: 100%;
  76. width: 40%;
  77. padding: 15px;
  78. }
  79. .action-button {
  80. flex: 1 0 200px;
  81. height: 50px;
  82. font-size: 18px;
  83. user-select: none;
  84. }
  85. .combat-button {
  86. width: 200px;
  87. height: 50px;
  88. font-size: 18px;
  89. user-select: none;
  90. }
  91. .eaten-button {
  92. width: 200px;
  93. height: 50px;
  94. font-size: 18px;
  95. user-select: none;
  96. }
  97. #combat-desc {
  98. width: 200px;
  99. height: 200px;
  100. margin: 15px;
  101. background: #222;
  102. }
  103. .dialog-button {
  104. width: 300px;
  105. height: 75px;
  106. font-size: 18px;
  107. user-select: none;
  108. }
  109. #dialog {
  110. list-style-type: none;
  111. }
  112. #combat {
  113. list-style-type: none;
  114. }
  115. #eaten {
  116. list-style-type: none;
  117. }
  118. #log {
  119. background: #222;
  120. width: 100%;
  121. height: 100%;
  122. flex: 3;
  123. overflow: auto;
  124. }
  125. .log-entry-padded {
  126. margin: 50px 0px 0px 0px;
  127. }
  128. .stats {
  129. float: right;
  130. flex: 1;
  131. }
  132. .options {
  133. flex-wrap: wrap;
  134. max-width: 100px;
  135. height:50%;
  136. }
  137. #player-stats {
  138. height: 75%;
  139. }
  140. #foe-stats {
  141. display: none;
  142. height: 50%;
  143. }
  144. .stat-line {
  145. }
  146. #game-and-stats {
  147. margin: auto;
  148. height: 500px;
  149. max-width: 1000px;
  150. padding: 15px;
  151. display: flex;
  152. }
  153. #footer {
  154. max-width: 800px;
  155. margin: auto;
  156. }
  157. .selector {
  158. display: flex;
  159. }
  160. #game {
  161. display: none;
  162. }
  163. #create {
  164. color: #eee;
  165. padding: 25px;
  166. text-align: center;
  167. }
  168. .character-form-list {
  169. margin: auto;
  170. list-style-type: none;
  171. display: none;
  172. }
  173. #character-step-1 {
  174. display: block;
  175. }
  176. #character-form {
  177. font-size: 20pt;
  178. }
  179. .pref-radio {
  180. display: none;
  181. }
  182. .pref-radio + label {
  183. color: #666;
  184. width: 150px;
  185. }
  186. .pref-gray {
  187. background: #111 !important;
  188. color: #333 !important;
  189. }
  190. .pref-radio:checked + label.pref-disable {
  191. background: #711;
  192. color: #eee;
  193. }
  194. .pref-radio:checked + label.pref-avoid {
  195. background: #a41;
  196. color: #eee;
  197. }
  198. .pref-radio:checked + label.pref-enable {
  199. background: #3a3;
  200. color: #eee;
  201. }
  202. .pref-radio:checked + label.pref-prefer {
  203. background: #44a2c7;
  204. color: #eee;
  205. }
  206. .pref-hidden {
  207. visibility: hidden;
  208. }
  209. .pref-select {
  210. display: flex;
  211. align-items: center;
  212. justify-content: center;
  213. }
  214. .pref-list {
  215. text-align: center;
  216. margin: auto;
  217. user-select: none;
  218. }
  219. .pref-type {
  220. width: 150px;
  221. }