munch
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

259 lines
2.9 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. .log-entry-padded {
  120. margin: 50px 0px 0px 0px;
  121. }
  122. .stats {
  123. float: right;
  124. flex: 1;
  125. }
  126. #player-stats {
  127. height: 75%;
  128. }
  129. #foe-stats {
  130. display: none;
  131. height: 50%;
  132. }
  133. .stat-line {
  134. }
  135. #game-and-stats {
  136. margin: auto;
  137. height: 500px;
  138. max-width: 1000px;
  139. padding: 15px;
  140. display: flex;
  141. }
  142. #footer {
  143. max-width: 800px;
  144. margin: auto;
  145. }
  146. .selector {
  147. display: flex;
  148. }
  149. #game {
  150. display: none;
  151. }
  152. #create {
  153. color: #eee;
  154. padding: 25px;
  155. text-align: center;
  156. }
  157. .character-form-list {
  158. margin: auto;
  159. list-style-type: none;
  160. display: none;
  161. }
  162. #character-step-1 {
  163. display: block;
  164. }
  165. #character-form {
  166. font-size: 20pt;
  167. }
  168. .pref-radio {
  169. display: none;
  170. }
  171. .pref-radio + label {
  172. color: #666;
  173. width: 150px;
  174. }
  175. .pref-gray {
  176. background: #111 !important;
  177. color: #333 !important;
  178. }
  179. .pref-radio:checked + label.pref-disable {
  180. background: #711;
  181. color: #eee;
  182. }
  183. .pref-radio:checked + label.pref-avoid {
  184. background: #a41;
  185. color: #eee;
  186. }
  187. .pref-radio:checked + label.pref-enable {
  188. background: #3a3;
  189. color: #eee;
  190. }
  191. .pref-radio:checked + label.pref-prefer {
  192. background: #44a2c7;
  193. color: #eee;
  194. }
  195. .pref-hidden {
  196. visibility: hidden;
  197. }
  198. .pref-select {
  199. display: flex;
  200. align-items: center;
  201. justify-content: center;
  202. }
  203. .pref-list {
  204. text-align: center;
  205. margin: auto;
  206. user-select: none;
  207. }
  208. .pref-type {
  209. width: 150px;
  210. }