big steppy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

90 lines
1.0 KiB

  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.2){
  10. .game-area {
  11. width: 100%
  12. }
  13. }
  14. @media (min-aspect-ratio: 16/9){
  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: none;
  43. flex-wrap: wrap;
  44. flex-direction: column;
  45. text-align: right;
  46. flex: 1;
  47. }
  48. .button-container {
  49. flex-wrap: wrap;
  50. max-width: 300px;
  51. height: 400px;
  52. flex: 2;
  53. }
  54. #action-panel {
  55. display: none;
  56. }
  57. #option-panel {
  58. display: flex;
  59. }
  60. .option-button {
  61. font-size: 20px;
  62. width: 120px;
  63. height: 75px;
  64. }
  65. .option-form {
  66. font-size: 16px;
  67. width: 300px;
  68. height: 100px;
  69. }
  70. .action-button {
  71. font-size: 24px;
  72. width: 120px;
  73. height: 75px;
  74. }