munch
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 

149 líneas
1.6 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. .disabled-button {
  30. background: repeating-linear-gradient(
  31. 45deg,
  32. #111,
  33. #111 10px,
  34. #622 10px,
  35. #622 20px
  36. );
  37. }
  38. .compass-button {
  39. width: 100px;
  40. height: 100px;
  41. font-size: 18px;
  42. user-select: none;
  43. }
  44. .action-button {
  45. width: 100px;
  46. height: 100px;
  47. font-size: 18px;
  48. user-select: none;
  49. }
  50. .combat-button {
  51. width: 200px;
  52. height: 50px;
  53. font-size: 18px;
  54. user-select: none;
  55. }
  56. .eaten-button {
  57. width: 200px;
  58. height: 50px;
  59. font-size: 18px;
  60. user-select: none;
  61. }
  62. #combat-desc {
  63. width: 200px;
  64. height: 400px;
  65. background: #222;
  66. }
  67. .dialog-button {
  68. width: 300px;
  69. height: 75px;
  70. font-size: 18px;
  71. user-select: none;
  72. }
  73. #dialog {
  74. list-style-type: none;
  75. }
  76. #combat {
  77. list-style-type: none;
  78. }
  79. #eaten {
  80. list-style-type: none;
  81. }
  82. #log {
  83. background: #222;
  84. width: 100%;
  85. height: 100%;
  86. flex: 3;
  87. overflow: auto;
  88. }
  89. #stats {
  90. float: right;
  91. flex: 1;
  92. }
  93. .stat-line {
  94. }
  95. #game-and-stats {
  96. margin: auto;
  97. height: 500px;
  98. width: 700px;
  99. display: flex;
  100. }
  101. #footer {
  102. width: 500px;
  103. margin: auto;
  104. }
  105. .selector {
  106. display: flex;
  107. }
  108. #game {
  109. display: none;
  110. }
  111. #create {
  112. text-align: center;
  113. }
  114. #character-form-list {
  115. list-style-type: none;
  116. }
  117. #character-form {
  118. font-size: 20pt;
  119. }