munch
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 

81 Zeilen
833 B

  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. }
  25. .action-button {
  26. width: 100px;
  27. height: 100px;
  28. font-size: 18px;
  29. }
  30. .combat-button {
  31. width: 100px;
  32. height: 100px;
  33. font-size: 18px;
  34. }
  35. .dialog-button {
  36. width: 100px;
  37. height: 100px;
  38. font-size: 18px;s
  39. }
  40. #log {
  41. background: #222;
  42. width: 100%;
  43. height: 100%;
  44. flex: 3;
  45. }
  46. #stats {
  47. float: right;
  48. flex: 1;
  49. }
  50. .stat-line {
  51. }
  52. #game-and-stats {
  53. margin: auto;
  54. height: 500px;
  55. width: 700px;
  56. display: flex;
  57. }
  58. #footer {
  59. width: 500px;
  60. margin: auto;
  61. }
  62. .selector {
  63. display: flex;
  64. }