big steppy
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

142 wiersze
1.8 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. display:none;
  22. }
  23. #log {
  24. height: 600px;
  25. overflow: auto;
  26. background-color: #fff;
  27. }
  28. .stat-header-self {
  29. font-weight: bold;
  30. font-size: 150%;
  31. min-width:250px;
  32. }
  33. .stat-header {
  34. font-weight: bold;
  35. font-size: 150%;
  36. min-width:130px;
  37. }
  38. .stat-line {
  39. font-weight: normal;
  40. font-size: 12pt;
  41. }
  42. .stat-container {
  43. display: none;
  44. flex-wrap: wrap;
  45. flex-direction: column;
  46. text-align: right;
  47. flex: 1;
  48. }
  49. .preset-selector {
  50. height: 25px;
  51. }
  52. .option-container {
  53. margin: auto;
  54. }
  55. .button-container {
  56. flex-wrap: wrap;
  57. max-width: 300px;
  58. height: 400px;
  59. flex: 2;
  60. }
  61. #action-panel {
  62. display: none;
  63. }
  64. .option-button {
  65. font-size: 20px;
  66. width: 120px;
  67. height: 75px;
  68. }
  69. .option-form {
  70. font-size: 16px;
  71. width: 300px;
  72. height: 100px;
  73. }
  74. .action-button {
  75. font-size: 24px;
  76. width: 120px;
  77. height: 75px;
  78. }
  79. #victim-table {
  80. margin: auto;
  81. width: 80%;
  82. }
  83. .victim-table-cell {
  84. width: 10%;
  85. }
  86. .reveal-if-active {
  87. opacity: 0;
  88. max-height: 0;
  89. overflow: hidden;
  90. }
  91. input[type="radio"]:checked ~ .reveal-if-active,
  92. input[type="checkbox"]:checked ~ .reveal-if-active {
  93. opacity: 1;
  94. max-height: 200px; /* little bit of a magic number :( */
  95. overflow: visible;
  96. }
  97. .flex-outer li,
  98. .flex-inner {
  99. display: flex;
  100. flex-wrap: wrap;
  101. align-items: center;
  102. }
  103. .flex-outer > li > label,
  104. .flex-outer li p {
  105. flex: 1 0 120px;
  106. max-width: 220px;
  107. }
  108. .flex-outer > li > label + *,
  109. .flex-inner {
  110. flex: 1 0 220px;
  111. }
  112. .has-tooltip {
  113. position: relative;
  114. display: inline-block;
  115. border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
  116. }