munch
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

232 строки
2.6 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-button {
  57. width: 100px;
  58. height: 100px;
  59. font-size: 18px;
  60. user-select: none;
  61. }
  62. .action-button {
  63. width: 100px;
  64. height: 100px;
  65. font-size: 18px;
  66. user-select: none;
  67. }
  68. .combat-button {
  69. width: 200px;
  70. height: 50px;
  71. font-size: 18px;
  72. user-select: none;
  73. }
  74. .eaten-button {
  75. width: 200px;
  76. height: 50px;
  77. font-size: 18px;
  78. user-select: none;
  79. }
  80. #combat-desc {
  81. width: 200px;
  82. height: 400px;
  83. background: #222;
  84. }
  85. .dialog-button {
  86. width: 300px;
  87. height: 75px;
  88. font-size: 18px;
  89. user-select: none;
  90. }
  91. #dialog {
  92. list-style-type: none;
  93. }
  94. #combat {
  95. list-style-type: none;
  96. }
  97. #eaten {
  98. list-style-type: none;
  99. }
  100. #log {
  101. background: #222;
  102. width: 100%;
  103. height: 100%;
  104. flex: 3;
  105. overflow: auto;
  106. }
  107. .stats {
  108. float: right;
  109. flex: 1;
  110. }
  111. #player-stats {
  112. height: 65%;
  113. }
  114. #foe-stats {
  115. display: none;
  116. height: 50%;
  117. }
  118. .stat-line {
  119. }
  120. #game-and-stats {
  121. margin: auto;
  122. height: 500px;
  123. width: 700px;
  124. display: flex;
  125. }
  126. #footer {
  127. width: 500px;
  128. margin: auto;
  129. }
  130. .selector {
  131. display: flex;
  132. }
  133. #game {
  134. display: none;
  135. }
  136. #create {
  137. color: #eee;
  138. padding: 25px;
  139. text-align: center;
  140. }
  141. #character-form-list {
  142. margin: auto;
  143. list-style-type: none;
  144. }
  145. #character-form {
  146. font-size: 20pt;
  147. }
  148. .pref-radio {
  149. display: none;
  150. }
  151. .pref-radio + label {
  152. color: #666;
  153. width: 150px;
  154. }
  155. .pref-gray {
  156. background: #111 !important;
  157. color: #333 !important;
  158. }
  159. .pref-radio:checked + label.pref-disable {
  160. background: #711;
  161. color: #eee;
  162. }
  163. .pref-radio:checked + label.pref-avoid {
  164. background: #a41;
  165. color: #eee;
  166. }
  167. .pref-radio:checked + label.pref-enable {
  168. background: #3a3;
  169. color: #eee;
  170. }
  171. .pref-radio:checked + label.pref-prefer {
  172. background: #44a2c7;
  173. color: #eee;
  174. }
  175. .pref-select {
  176. display: flex;
  177. align-items: center;
  178. justify-content: center;
  179. }
  180. .pref-list {
  181. text-align: center;
  182. margin: auto;
  183. user-select: none;
  184. }
  185. .pref-type {
  186. width: 150px;
  187. }