big steppy
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 

71 lines
836 B

  1. body {
  2. background: #eee;
  3. font-family: Arial;
  4. }
  5. .game-area {
  6. display: flex;
  7. margin: auto;
  8. }
  9. @media (max-aspect-ratio: 1/1){
  10. .game-area {
  11. width: 100%
  12. }
  13. }
  14. @media (min-aspect-ratio: 1/1){
  15. .game-area {
  16. width: 75%
  17. }
  18. }
  19. #log-area {
  20. flex: 3;
  21. }
  22. #log {
  23. height: 600px;
  24. overflow: auto;
  25. background-color: #fff;
  26. }
  27. .stat-header-self {
  28. font-weight: bold;
  29. font-size: 150%;
  30. min-width:250px;
  31. }
  32. .stat-header {
  33. font-weight: bold;
  34. font-size: 150%;
  35. min-width:130px;
  36. }
  37. .stat-line {
  38. font-weight: normal;
  39. font-size: 12pt;
  40. }
  41. .stat-container {
  42. display: flex;
  43. flex-wrap: wrap;
  44. flex-direction: column;
  45. text-align: right;
  46. flex: 1;
  47. }
  48. .button-container {
  49. display: flex;
  50. flex-wrap: wrap;
  51. flex-direction: column;
  52. flex: 1;
  53. }
  54. .action-button {
  55. font-size: 24px;
  56. width: 200px;
  57. height: 75px;
  58. }