runs.css 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. table#runs{
  2. color: #ffffff;
  3. border-collapse: collapse;
  4. width: 100%;
  5. }
  6. table#runs td.area, td.date, td.team, td.time, td.reward, td.action{
  7. border-top: 0.1em solid #99999977;
  8. }
  9. table#runs td.area div.area{
  10. position: relative;
  11. width: 2em;
  12. height: 2em;
  13. }
  14. table#runs td.area div.area img.area{
  15. position: absolute;
  16. top: 0;
  17. left: 0;
  18. width: 2em;
  19. height: 2em;
  20. border: 0.2em solid #555555;
  21. border-radius: 0.5em;
  22. background-color: #777777;
  23. }
  24. table#runs td.area div.area span.stage{
  25. position: absolute;
  26. top: 1.3em;
  27. left: 0;
  28. width: 2em;
  29. text-align: right;
  30. 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;
  31. pointer-events: none;
  32. }
  33. table#runs td.area div.area span.difficulty{
  34. position: absolute;
  35. top: 0em;
  36. left: 0;
  37. width: 1.8em;
  38. text-align: right;
  39. pointer-events: none;
  40. }
  41. table#runs td.area div.area span.difficulty img.difficulty{
  42. height: 0.6em;
  43. width: 0.6em;
  44. margin: 0 -0.3em;
  45. filter: sepia(100%) saturate(500%) hue-rotate(10deg) saturate(200%) drop-shadow(0 0 0.1em #000) drop-shadow(0 0 0.1em #000) drop-shadow(0 0 0.1em #000);
  46. }
  47. table#runs td.date{
  48. font-size: 70%;
  49. }
  50. table#runs td.team{
  51. font-size: 30%;
  52. }
  53. table#runs td.team div.helper{
  54. vertical-align: top;
  55. background-color: #777777;
  56. }
  57. table#runs td.team div.monster_panel.disabled{
  58. opacity: 0.5;
  59. }
  60. table#runs td.time{
  61. font-weight: bold;
  62. font-size: 75%;
  63. }
  64. table#runs td.time span.ms{
  65. font-size: 70%;
  66. }
  67. table#runs td.time span.defeated{
  68. color: #cc0000;
  69. text-shadow: 0 0 0.05em #ffffff;
  70. }
  71. table#runs td.reward div.item{
  72. display: inline-block;
  73. width: 1.6em;
  74. height: 1.6em;
  75. position: relative;
  76. border: 0.2em solid #555555;
  77. border-radius: 0.5em;
  78. background-color: #777777;
  79. }
  80. table#runs td.reward div.item img.item{
  81. width: 1.6em;
  82. height: 1.6em;
  83. border-radius: 0.4em;
  84. }
  85. table#runs td.reward div.item span.item{
  86. position: absolute;
  87. left: 0;
  88. top: 1.6em;
  89. font-size: 60%;
  90. width: 2.6em;
  91. text-align: right;
  92. 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;
  93. }
  94. table#runs td.reward div.item_rune table.rune{
  95. display: none;
  96. position: absolute;
  97. right: 1.8em;
  98. bottom: 0;
  99. font-size: 75%;
  100. }
  101. table#runs td.reward div.item_rune:hover table.rune{
  102. display: block;
  103. }
  104. table#runs td.action img.save_team{
  105. width: 1em;
  106. height: 1em;
  107. cursor: pointer;
  108. }
  109. section#save_team{
  110. z-index: 1;
  111. display: none;
  112. position: fixed;
  113. width: 80%;
  114. height: 70%;
  115. margin: 0 10%;
  116. top: 10%;
  117. filter: drop-shadow(0 0 10em #000000) drop-shadow(0 0 6em #000000);
  118. }
  119. section#save_team table{
  120. width: 100%;
  121. }
  122. section#save_team table td.save_title{
  123. width: 10em;
  124. text-align: right;
  125. padding-right: 2em;
  126. }
  127. section#save_team table td.save_values{
  128. text-align: left;
  129. padding-right: 2em;
  130. }