catalog.css 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  1. section#filters{
  2. width: 80%;
  3. text-align:center;
  4. margin: 1em auto 2em auto;
  5. border: 0.1em solid #000000;
  6. border-radius: 0.5em;
  7. background-color: #aa8866;
  8. }
  9. section#filters div.filter{
  10. vertical-align: top;
  11. margin: 0.7em;
  12. display: inline-block;
  13. text-align: center;
  14. }
  15. section#filters div.filter span{
  16. color: #ffffff;
  17. }
  18. section#filters div.filter input{
  19. margin-top: 0.5em;
  20. }
  21. section#filters div#filter_stars input{
  22. width: 3em;
  23. }
  24. section#filters div#filter_apply{
  25. text-align: center;
  26. margin: 2em auto 1em auto;
  27. }
  28. section#catalog{
  29. display: block;
  30. width: 80%;
  31. margin: auto;
  32. text-align: center;
  33. }
  34. @media screen and (max-width : 990px){
  35. section#catalog{
  36. width: 100%;
  37. }
  38. }
  39. section#catalog div.monster{
  40. display: inline-block;
  41. width: 7em;
  42. height: 7em;
  43. border: 0.2em solid #000000;
  44. margin: 0.5em;
  45. position: relative;
  46. border-radius: 15%;
  47. }
  48. section#catalog div.monster.unowned{
  49. background-color: #000000;
  50. filter: brightness(50%);
  51. }
  52. @media screen and (max-width : 990px){
  53. section#catalog div.monster{
  54. height: 6em;
  55. width: 6em;
  56. border: 0.1em solid #000000;
  57. margin: 0.2em;
  58. border-radius: 10%;
  59. }
  60. }
  61. section#catalog div.monster span.stars{
  62. position: absolute;
  63. /* z-index: 1; */
  64. top: 0.4em;
  65. right: 0.5em;
  66. }
  67. @media screen and (max-width : 990px){
  68. section#catalog div.monster span.stars{
  69. top: 0.3em;
  70. right: 0.4em;
  71. }
  72. }
  73. section#catalog div.monster span.stars img.star{
  74. width: 1em;
  75. height: 1em;
  76. margin-left: -0.6em;
  77. filter: drop-shadow(0 0 0.1em #000000) drop-shadow(0 0 0.1em #000000) drop-shadow(0 0 0.1em #000000);
  78. }
  79. @media screen and (max-width : 990px){
  80. section#catalog div.monster span.stars img.star{
  81. width: 0.9em;
  82. height: 0.9em;
  83. margin-left: -0.7em;
  84. }
  85. }
  86. section#catalog div.monster img.monster{
  87. width: 6.5em;
  88. height: 6.5em;
  89. border-style: solid;
  90. border-width: 0.3em;
  91. border-radius: 15%;
  92. }
  93. @media screen and (max-width : 990px){
  94. section#catalog div.monster img.monster{
  95. width: 5.6em;
  96. height: 5.6em;
  97. border-width: 0.2em;
  98. border-radius: 10%;
  99. }
  100. }
  101. div#viewer{
  102. width: 60%;
  103. height: 80%;
  104. position: fixed;
  105. left: 22%;
  106. top: 10%;
  107. z-index: 20;
  108. display: none;
  109. padding: 0;
  110. }
  111. @media screen and (max-width : 990px){
  112. div#viewer{
  113. width: 90%;
  114. height: 90%;
  115. left: 3%;
  116. top: 5%;
  117. }
  118. }
  119. div#viewer div#viewer_wait{
  120. width: 100%;
  121. margin: 4em 0 0 0;
  122. text-align: center;
  123. }
  124. div#viewer div#viewer_info{
  125. width: 100%;
  126. height: 100%;
  127. margin: 0;
  128. padding: 0;
  129. display: none;
  130. text-align: center;
  131. }
  132. div#viewer div#viewer_info table#monster_header{
  133. width: 90%;
  134. margin: auto;
  135. border-collapse: collapse;
  136. }
  137. @media screen and (max-width : 990px){
  138. div#viewer div#viewer_info table#monster_header{
  139. width: 100%;
  140. }
  141. }
  142. div#viewer div#viewer_info table#monster_header img.monster_img{
  143. width: 6.5em;
  144. height: 6.5em;
  145. border-style: solid;
  146. border-width: 0.3em;
  147. border-radius: 15%;
  148. margin: 0.2em 0.8em;
  149. }
  150. @media screen and (max-width : 990px){
  151. div#viewer div#viewer_info table#monster_header img.monster_img{
  152. width: 5em;
  153. height: 5em;
  154. border-width: 0.2em;
  155. border-radius: 10%;
  156. margin: 0.1em;
  157. }
  158. }
  159. div#viewer div#viewer_info table#monster_header div#monster_stars{
  160. margin: 0.5em auto;
  161. padding: 0.3em;
  162. }
  163. @media screen and (max-width : 990px){
  164. div#viewer div#viewer_info table#monster_header div#monster_stars{
  165. margin: 0.3em auto;
  166. padding: 0.1em;
  167. }
  168. }
  169. div#viewer div#viewer_info table#monster_header div#monster_stars img.monster_star{
  170. width: 2em;
  171. height: 2em;
  172. filter: drop-shadow(0 0 0.1em #000000) drop-shadow(0 0 0.1em #000000) drop-shadow(0 0 0.1em #000000);
  173. }
  174. @media screen and (max-width : 990px){
  175. div#viewer div#viewer_info table#monster_header div#monster_stars img.monster_star{
  176. width: 1.6em;
  177. height: 1.6em;
  178. }
  179. }
  180. div#viewer div#viewer_info table#monster_skills{
  181. width: 90%;
  182. margin: 2em auto 2em auto;
  183. border-collapse: collapse;
  184. border: 0.1em solid #000000;
  185. border-radius: 0.5em;
  186. background-color: #aa8866;
  187. }
  188. div#viewer div#viewer_info table#monster_skills td{
  189. vertical-align: top;
  190. padding: 0.1em;
  191. text-align: center;
  192. width: 1%;
  193. }
  194. div#viewer a.control_close{
  195. float: right;
  196. }
  197. div#viewer a.control_close img{
  198. width: 1.5em;
  199. height: 1.5em;
  200. margin: 0.5em;
  201. }
  202. div#viewer div#viewer_info table#monster_stats{
  203. width: 90%;
  204. margin: auto;
  205. border-collapse: collapse;
  206. border: 0.1em solid #000000;
  207. }
  208. div#viewer div#viewer_info table#monster_stats td.even0{
  209. background-color: #ffffff;
  210. }
  211. div#viewer div#viewer_info table#monster_stats td.even1{
  212. background-color: #dddddd;
  213. }
  214. div#viewer div#viewer_info table#monster_stats td, th{
  215. text-align: center;
  216. width: 1%;
  217. }
  218. div#viewer div#viewer_info table#monster_stats tr#stats_header_names th{
  219. background-color: #aaaaaa;
  220. font-size: 90%;
  221. }
  222. div#viewer div#viewer_info table#monster_stats tr#stats_header_ranges th{
  223. background-color: #aaaaaa;
  224. color: #333333;
  225. font-size: 70%;
  226. }
  227. div#viewer div#viewer_info table#monster_stats td img.star{
  228. width: 0.5em;
  229. height: 0.5em;
  230. margin: -0.2em;
  231. filter: drop-shadow(0 0 0.1em #000000) drop-shadow(0 0 0.1em #000000);
  232. }
  233. div#viewer div#viewer_info table#monster_stats td span.stat{
  234. display: block;
  235. margin: 0;
  236. text-align: center;
  237. font-size: 80%;
  238. }
  239. div#viewer div#viewer_info table#monster_stats td span.stat.awake{
  240. color: #aa00ff;
  241. font-style: italic;
  242. }
  243. div#viewer div#viewer_info div#monster_location{
  244. margin: 1em 20%;
  245. }
  246. div#viewer div#viewer_info div#monster_awake{
  247. text-align: center;
  248. }
  249. div#viewer div#viewer_info div#monster_awake table{
  250. margin: auto;
  251. }
  252. div#viewer div#viewer_info div#monster_awake td.essence{
  253. text-align: center;
  254. }
  255. div#viewer div#viewer_info div#monster_awake td.essence img{
  256. display: block;
  257. border-width: 0.2em;
  258. border-style: solid;
  259. border-radius: 50%;
  260. width: 2.5em;
  261. height: 2.5em;
  262. }
  263. div#viewer div#viewer_info div#monster_awake td.essence span{
  264. display: block;
  265. text-align: right;
  266. margin: -1em 0.2em 0 0;
  267. color: #ffffff;
  268. text-shadow: 0 0 0.2em #000000;
  269. filter: drop-shadow(0 0 0.1em #000000) drop-shadow(0 0 0.1em #000000);
  270. }