big steppy
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 

109 rindas
1.2 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. .preset-selector {
  49. height: 25px;
  50. }
  51. .option-container {
  52. flex-wrap: wrap;
  53. max-width: 300px;
  54. flex: 2;
  55. }
  56. .button-container {
  57. flex-wrap: wrap;
  58. max-width: 300px;
  59. height: 400px;
  60. flex: 2;
  61. }
  62. #action-panel {
  63. display: none;
  64. }
  65. #option-panel {
  66. display: flex;
  67. }
  68. .option-button {
  69. font-size: 20px;
  70. width: 120px;
  71. height: 75px;
  72. }
  73. .option-form {
  74. font-size: 16px;
  75. width: 300px;
  76. height: 100px;
  77. }
  78. .action-button {
  79. font-size: 24px;
  80. width: 120px;
  81. height: 75px;
  82. }
  83. #victim-table {
  84. margin: auto;
  85. width: 80%;
  86. }
  87. .victim-table-cell {
  88. width: 10%;
  89. }