munch
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

256 wiersze
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. .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. display: none;
  158. }
  159. #character-step-1 {
  160. display: block;
  161. }
  162. #character-form {
  163. font-size: 20pt;
  164. }
  165. .pref-radio {
  166. display: none;
  167. }
  168. .pref-radio + label {
  169. color: #666;
  170. width: 150px;
  171. }
  172. .pref-gray {
  173. background: #111 !important;
  174. color: #333 !important;
  175. }
  176. .pref-radio:checked + label.pref-disable {
  177. background: #711;
  178. color: #eee;
  179. }
  180. .pref-radio:checked + label.pref-avoid {
  181. background: #a41;
  182. color: #eee;
  183. }
  184. .pref-radio:checked + label.pref-enable {
  185. background: #3a3;
  186. color: #eee;
  187. }
  188. .pref-radio:checked + label.pref-prefer {
  189. background: #44a2c7;
  190. color: #eee;
  191. }
  192. .pref-hidden {
  193. visibility: hidden;
  194. }
  195. .pref-select {
  196. display: flex;
  197. align-items: center;
  198. justify-content: center;
  199. }
  200. .pref-list {
  201. text-align: center;
  202. margin: auto;
  203. user-select: none;
  204. }
  205. .pref-type {
  206. width: 150px;
  207. }