a munch adventure
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 

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