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

112 linhas
1.2 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. #combat-desc {
  48. width: 200px;
  49. height: 400px;
  50. background: #222;
  51. }
  52. .dialog-button {
  53. width: 300px;
  54. height: 75px;
  55. font-size: 18px;
  56. user-select: none;
  57. }
  58. #dialog {
  59. list-style-type: none;
  60. }
  61. #combat {
  62. list-style-type: none;
  63. }
  64. #log {
  65. background: #222;
  66. width: 100%;
  67. height: 100%;
  68. flex: 3;
  69. overflow: auto;
  70. }
  71. #stats {
  72. float: right;
  73. flex: 1;
  74. }
  75. .stat-line {
  76. }
  77. #game-and-stats {
  78. margin: auto;
  79. height: 500px;
  80. width: 700px;
  81. display: flex;
  82. }
  83. #footer {
  84. width: 500px;
  85. margin: auto;
  86. }
  87. .selector {
  88. display: flex;
  89. }