crunch
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

165 lines
1.7 KiB

  1. body {
  2. background: #111;
  3. color: #eee;
  4. height: 100%;
  5. width: 100%;
  6. font-family: Arial;
  7. }
  8. a {
  9. color: #7777FF;
  10. text-decoration: none;
  11. }
  12. body.combat {
  13. background: #311;
  14. }
  15. body.explore {
  16. background: #111;
  17. }
  18. body.eaten {
  19. background: #500;
  20. }
  21. button {
  22. background: #222;
  23. color: #eee;
  24. }
  25. #selector-combat {
  26. display: none;
  27. }
  28. .active-button {
  29. }
  30. .inactive-button {
  31. background: #111;
  32. }
  33. .disabled-button {
  34. background: repeating-linear-gradient(
  35. 45deg,
  36. #111,
  37. #111 10px,
  38. #622 10px,
  39. #622 20px
  40. );
  41. }
  42. .compass-button {
  43. width: 100px;
  44. height: 100px;
  45. font-size: 18px;
  46. user-select: none;
  47. }
  48. .action-button {
  49. width: 100px;
  50. height: 100px;
  51. font-size: 18px;
  52. user-select: none;
  53. }
  54. .combat-button {
  55. width: 200px;
  56. height: 50px;
  57. font-size: 18px;
  58. user-select: none;
  59. }
  60. .eaten-button {
  61. width: 200px;
  62. height: 50px;
  63. font-size: 18px;
  64. user-select: none;
  65. }
  66. #combat-desc {
  67. width: 200px;
  68. height: 400px;
  69. background: #222;
  70. }
  71. .dialog-button {
  72. width: 300px;
  73. height: 75px;
  74. font-size: 18px;
  75. user-select: none;
  76. }
  77. #dialog {
  78. list-style-type: none;
  79. }
  80. #combat {
  81. list-style-type: none;
  82. }
  83. #eaten {
  84. list-style-type: none;
  85. }
  86. #log {
  87. background: #222;
  88. width: 100%;
  89. height: 100%;
  90. flex: 3;
  91. overflow: auto;
  92. }
  93. .stats {
  94. float: right;
  95. flex: 1;
  96. }
  97. #player-stats {
  98. height: 50%;
  99. }
  100. #foe-stats {
  101. display: none;
  102. height: 50%;
  103. }
  104. .stat-line {
  105. }
  106. #game-and-stats {
  107. margin: auto;
  108. height: 500px;
  109. width: 700px;
  110. display: flex;
  111. }
  112. #footer {
  113. width: 500px;
  114. margin: auto;
  115. }
  116. .selector {
  117. display: flex;
  118. }
  119. #game {
  120. display: none;
  121. }
  122. #create {
  123. color: #eee;
  124. padding: 25px;
  125. text-align: center;
  126. }
  127. #character-form-list {
  128. list-style-type: none;
  129. }
  130. #character-form {
  131. font-size: 20pt;
  132. }