crunch
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.
 
 
 

123 linhas
1.3 KiB

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