a munch adventure
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

234 satır
3.0 KiB

  1. html, body {
  2. min-height: 100%;
  3. height: 100%;
  4. color: #eee;
  5. background-color: #333;
  6. font-family: sans-serif;
  7. }
  8. #info-area {
  9. position: relative;
  10. display: flex;
  11. height: 60%;
  12. }
  13. #log {
  14. background: #000000;
  15. flex: 4;
  16. padding: 25px;
  17. font-size: 24px;
  18. max-width: 50%;
  19. overflow: auto;
  20. }
  21. .sidebar {
  22. background: #111111;
  23. padding: 25px;
  24. flex: 1;
  25. display: flex;
  26. flex-direction: column;
  27. font-size: 24px;
  28. }
  29. #menu {
  30. margin: 10px;
  31. background: #222;
  32. flex: 2;
  33. }
  34. #world-info {
  35. margin: 10px;
  36. background: #222;
  37. flex: 5;
  38. }
  39. #self-info {
  40. margin: 10px;
  41. background: #222;
  42. flex: 5;
  43. }
  44. #control-area {
  45. display: flex;
  46. min-height: 40%;
  47. max-height: 40%;
  48. }
  49. @media (min-aspect-ratio: 1/1) {
  50. #actions {
  51. flex-wrap: wrap;
  52. }
  53. }
  54. #actions {
  55. position: relative;
  56. flex-direction: column;
  57. align-items: center;
  58. display: flex;
  59. padding: 25px;
  60. font-size: 24px;
  61. background: #111;
  62. flex: 1;
  63. max-height: 100%;
  64. }
  65. .action-button {
  66. flex: 0 0 50px;
  67. width: 250px;
  68. background-color: #888;
  69. color: #eee;
  70. margin: 5px;
  71. font-size: 24px;
  72. }
  73. #desc {
  74. padding: 25px;
  75. font-size: 18px;
  76. background: #222;
  77. flex: 1;
  78. }
  79. #moves {
  80. padding: 25px;
  81. position: relative;
  82. background: #111;
  83. flex: 1;
  84. }
  85. #move-holder {
  86. position: absolute;
  87. left: 50%;
  88. margin-left: -100px;
  89. top: 5%;
  90. }
  91. @media (max-aspect-ratio: 1/1) {
  92. .move-button {
  93. width: 100px;
  94. height: 100px;
  95. }
  96. }
  97. @media (min-aspect-ratio: 1/1) {
  98. .move-button {
  99. width: 200px;
  100. height: 50px;
  101. }
  102. }
  103. .move-button {
  104. user-select: none;
  105. background-color: #888;
  106. color: #eee;
  107. border-radius: 5px;
  108. font-size: 24px;
  109. }
  110. .move-button:focus {
  111. outline: 0px;
  112. }
  113. .disabled {
  114. background-color: #444;
  115. border: none;
  116. }
  117. #move-up-left {
  118. position: absolute;
  119. left: -140px;
  120. top: 60px;
  121. }
  122. #move-up {
  123. position: absolute;
  124. left: 0px;
  125. top: 0px;
  126. }
  127. #move-up-right {
  128. position: absolute;
  129. left: 140px;
  130. top: 60px;
  131. }
  132. #move-left {
  133. position: absolute;
  134. left: -200px;
  135. top: 120px;
  136. }
  137. #move-right {
  138. position: absolute;
  139. left: 200px;
  140. top: 120px;
  141. }
  142. #move-down-left {
  143. position: absolute;
  144. left: -140px;
  145. top: 180px;
  146. }
  147. #move-down {
  148. position: absolute;
  149. left: 0px;
  150. top: 240px;
  151. }
  152. #move-down-right {
  153. position: absolute;
  154. left: 140px;
  155. top: 180px;
  156. }
  157. #move-ascend {
  158. position: absolute;
  159. left: -200px;
  160. top: 300px;
  161. }
  162. #move-descend {
  163. position: absolute;
  164. left: 200px;
  165. top: 300px;
  166. }
  167. #area-name {
  168. font-size: 36px;
  169. }
  170. #log::-webkit-scrollbar {
  171. width: 3px;
  172. height: 2px;
  173. }
  174. #log::-webkit-scrollbar-button {
  175. width: 0px;
  176. height: 0px;
  177. }
  178. #log::-webkit-scrollbar-thumb {
  179. background: #e1e1e1;
  180. border: 0px none #ffffff;
  181. border-radius: 50px;
  182. }
  183. #log::-webkit-scrollbar-thumb:hover {
  184. background: #ffffff;
  185. }
  186. #log::-webkit-scrollbar-thumb:active {
  187. background: #000000;
  188. }
  189. #log::-webkit-scrollbar-track {
  190. background: #666666;
  191. border: 0px none #ffffff;
  192. border-radius: 50px;
  193. }
  194. #log::-webkit-scrollbar-track:hover {
  195. background: #666666;
  196. }
  197. #log::-webkit-scrollbar-track:active {
  198. background: #333333;
  199. }
  200. #log::-webkit-scrollbar-corner {
  201. background: transparent;
  202. }