teams.css 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. table#teams{
  2. width: 100%;
  3. border-collapse: collapse;
  4. border: 0.1em solid #000000;
  5. }
  6. table#teams th{
  7. border-top: 0.1em solid #000000;
  8. border-bottom: 0.1em solid #000000;
  9. }
  10. table#teams td{
  11. border-bottom: 0.1em solid #000000;
  12. text-align: left;
  13. padding: 0.2em;
  14. }
  15. table#teams td.odd{
  16. background-color: #00000033;
  17. }
  18. table#teams td.team h4{
  19. position: relative;
  20. margin: 0.1em;
  21. }
  22. table#teams td.team h4 img.area{
  23. top: 0;
  24. left: 0;
  25. width: 2em;
  26. height: 2em;
  27. border: 0.2em solid #555555;
  28. border-radius: 0.5em;
  29. background-color: #777777;
  30. }
  31. table#teams td.team h4 span.stage{
  32. position: absolute;
  33. top: 1.3em;
  34. left: 0;
  35. width: 2em;
  36. text-align: right;
  37. text-shadow: 0 0 0.3em #000, 0 0 0.3em #000, 0 0 0.3em #000, 0 0 0.2em #000, 0 0 0.1em #000, 0 0 0.1em #000;
  38. pointer-events: none;
  39. }
  40. table#teams td.units{
  41. width: 12em;
  42. }
  43. table#teams td.units hr.frontline{
  44. display: block;
  45. width: 9em;
  46. margin: -0.6em 0 0.2em 0;
  47. color: #666666;
  48. }
  49. table#teams td.units div.monster_panel{
  50. font-size: 25%;
  51. margin-bottom: -2em;
  52. }
  53. table#teams td.units div.monster_panel img.leader{
  54. width: 5em;
  55. height: 5em;
  56. display: block;
  57. position: absolute;
  58. top: -1.7em;
  59. left: -0.7em;
  60. }
  61. section#new_team{
  62. z-index: 1;
  63. display: none;
  64. position: fixed;
  65. width: 80%;
  66. height: 70%;
  67. margin: 0 10%;
  68. top: 10%;
  69. filter: drop-shadow(0 0 10em #000000) drop-shadow(0 0 6em #000000);
  70. }
  71. section#new_team table{
  72. width: 100%;
  73. }
  74. section#new_team table td.new_title{
  75. width: 10em;
  76. text-align: right;
  77. padding-right: 2em;
  78. }
  79. section#new_team table td.new_values{
  80. text-align: left;
  81. padding-right: 2em;
  82. }
  83. section#new_team select.new_area{
  84. display: none;
  85. }
  86. section#new_team select#new_area_difficulty{
  87. display: none;
  88. }
  89. section#new_team select#new_area_stage{
  90. display: none;
  91. }
  92. section#new_team div#new_team_units{
  93. background-color: #00000033;
  94. border-radius: 0.5em;
  95. height: 5em;
  96. text-align: left;
  97. }
  98. section#new_team div#new_team_units div.monster_panel{
  99. font-size: 50%;
  100. cursor: not-allowed;
  101. }
  102. section#new_team div.new_unit{
  103. text-align: right;
  104. display: none;
  105. }
  106. section#new_team div.new_unit div.new_unit_autocomplete{
  107. border: 0.1em solid #000000;
  108. display: none;
  109. border-radius: 0.5em;
  110. margin: auto auto auto 1em;
  111. position: absolute;
  112. }
  113. section#new_team div.new_unit div.new_unit_autocomplete div{
  114. border: 0.05em solid #000000;
  115. text-align: left;
  116. text-transform: capitalize;
  117. font-variant: small-caps;
  118. cursor: pointer;
  119. color: var(--input-color);
  120. font-weight: var(--input-font-weight);
  121. padding: var(--input-padding);
  122. background: var(--input-background);
  123. border: var(--input-border);
  124. border-radius: var(--input-border-radius);
  125. text-shadow: var(--input-text-shadow);
  126. box-shadow: var(--input-box-shadow);
  127. }
  128. section#new_team div.new_unit div.new_unit_autocomplete div span{
  129. vertical-align: middle;
  130. }
  131. section#new_team div.new_unit div.new_unit_autocomplete div img{
  132. height: 1.5em;
  133. width: 1.5em;
  134. vertical-align: middle;
  135. border-radius: 0.1em;
  136. border: 0.1em solid #000000;
  137. }
  138. section#error{
  139. z-index: 2;
  140. display: none;
  141. position: fixed;
  142. width: 70%;
  143. height: 60%;
  144. margin: 0 15%;
  145. top: 15%;
  146. filter: drop-shadow(0 0 10em #000000) drop-shadow(0 0 6em #000000);
  147. }