teams.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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. margin: 0.2em;
  20. }
  21. table#teams td.team h5{
  22. margin: 0.1em;
  23. }
  24. table#teams td.units div.monster_panel{
  25. font-size: 25%;
  26. margin-bottom: -2em;
  27. }
  28. section#new_team{
  29. z-index: 1;
  30. display: none;
  31. position: fixed;
  32. width: 80%;
  33. height: 70%;
  34. margin: 0 10%;
  35. top: 10%;
  36. filter: drop-shadow(0 0 10em #000000) drop-shadow(0 0 6em #000000);
  37. }
  38. section#new_team table{
  39. width: 100%;
  40. }
  41. section#new_team table td.new_title{
  42. width: 10em;
  43. text-align: right;
  44. padding-right: 2em;
  45. }
  46. section#new_team table td.new_values{
  47. text-align: left;
  48. padding-right: 2em;
  49. }
  50. section#new_team select.new_area{
  51. display: none;
  52. }
  53. section#new_team select#new_area_difficulty{
  54. display: none;
  55. }
  56. section#new_team select#new_area_stage{
  57. display: none;
  58. }
  59. section#new_team div#new_team_units{
  60. background-color: #00000033;
  61. border-radius: 0.5em;
  62. height: 5em;
  63. text-align: left;
  64. }
  65. section#new_team div#new_team_units div.monster_panel{
  66. font-size: 50%;
  67. cursor: not-allowed;
  68. }
  69. section#new_team div.new_unit{
  70. text-align: right;
  71. display: none;
  72. }
  73. section#new_team div.new_unit div.new_unit_autocomplete{
  74. border: 0.1em solid #000000;
  75. display: none;
  76. border-radius: 0.5em;
  77. margin: auto auto auto 1em;
  78. position: absolute;
  79. }
  80. section#new_team div.new_unit div.new_unit_autocomplete div{
  81. border: 0.05em solid #000000;
  82. text-align: left;
  83. text-transform: capitalize;
  84. font-variant: small-caps;
  85. cursor: pointer;
  86. color: var(--input-color);
  87. font-weight: var(--input-font-weight);
  88. padding: var(--input-padding);
  89. background: var(--input-background);
  90. border: var(--input-border);
  91. border-radius: var(--input-border-radius);
  92. text-shadow: var(--input-text-shadow);
  93. box-shadow: var(--input-box-shadow);
  94. }
  95. section#new_team div.new_unit div.new_unit_autocomplete div span{
  96. vertical-align: middle;
  97. }
  98. section#new_team div.new_unit div.new_unit_autocomplete div img{
  99. height: 1.5em;
  100. width: 1.5em;
  101. vertical-align: middle;
  102. border-radius: 0.1em;
  103. border: 0.1em solid #000000;
  104. }