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

100 lines
1.1 KiB

  1. body {
  2. background: #111;
  3. color: #eee;
  4. height: 100%;
  5. width: 100%;
  6. font-family: sans-serif;
  7. }
  8. button {
  9. background: #222;
  10. color: #eee;
  11. }
  12. #selector-combat {
  13. display: none;
  14. }
  15. .active-button {
  16. }
  17. .inactive-button {
  18. background: #111;
  19. }
  20. .compass-button {
  21. width: 100px;
  22. height: 100px;
  23. font-size: 18px;
  24. user-select: none;
  25. }
  26. .action-button {
  27. width: 100px;
  28. height: 100px;
  29. font-size: 18px;
  30. user-select: none;
  31. }
  32. .combat-button {
  33. width: 200px;
  34. height: 50px;
  35. font-size: 18px;
  36. user-select: none;
  37. }
  38. #combat-desc {
  39. width: 200px;
  40. height: 400px;
  41. background: #222;
  42. }
  43. .dialog-button {
  44. width: 300px;
  45. height: 75px;
  46. font-size: 18px;
  47. user-select: none;
  48. }
  49. #dialog {
  50. list-style-type: none;
  51. }
  52. #combat {
  53. list-style-type: none;
  54. }
  55. #log {
  56. background: #222;
  57. width: 100%;
  58. height: 100%;
  59. flex: 3;
  60. overflow: auto;
  61. }
  62. #stats {
  63. float: right;
  64. flex: 1;
  65. }
  66. .stat-line {
  67. }
  68. #game-and-stats {
  69. margin: auto;
  70. height: 500px;
  71. width: 700px;
  72. display: flex;
  73. }
  74. #footer {
  75. width: 500px;
  76. margin: auto;
  77. }
  78. .selector {
  79. display: flex;
  80. }