monster_info.css 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. section#monster{
  2. display: block;
  3. width: 98%;
  4. margin: auto;
  5. text-align: center;
  6. }
  7. @media screen and (max-width : 990px){
  8. section#monster{
  9. width: 100%;
  10. }
  11. }
  12. section#monster article.stage{
  13. margin: 0.5em;
  14. position: relative;
  15. border-radius: 1em;
  16. background: #351e0b;
  17. border: 0.2em solid #f2c920;
  18. padding: 0.3em;
  19. }
  20. section#monster article.stage div.profile{
  21. display: inline-block;
  22. vertical-align: top;
  23. }
  24. section#monster article.stage div.profile img.monster_image{
  25. max-width: 12em;
  26. max-height: 12em;
  27. border-style: solid;
  28. border-width: 0.3em;
  29. border-radius: 15%;
  30. display: inline-block;
  31. vertical-align: top;
  32. margin: 0 0.5em 1em 0.5em;
  33. }
  34. section#monster article.stage div.profile div.details{
  35. display: inline-block;
  36. vertical-align: top;
  37. text-align: center;
  38. }
  39. section#monster article.stage div.profile div.details span.stars{
  40. display: block;
  41. }
  42. section#monster article.stage div.profile div.details span.stars img.star{
  43. width: 1em;
  44. height: 1em;
  45. filter: drop-shadow(0 0 0.05em #ffffff);
  46. margin: -0.1em;
  47. }
  48. section#monster article.stage div.profile div.details span.archetype{
  49. color: #ffffff;
  50. display: block;
  51. text-shadow: 0 0 0.2em #000000, 0 0 0.2em #000000;
  52. font-size: 80%;
  53. }
  54. section#monster article.stage div.profile h4{
  55. color: #ffffff;
  56. font-weight: bold;
  57. text-shadow: 0 0 0.2em #000000, 0 0 0.2em #000000, 0 0 0.4em #000000;
  58. margin: 0.1em;
  59. display: block;
  60. }
  61. section#monster article.stage table.stats{
  62. font-size: 65%;
  63. border: 0.1em solid black;
  64. color: #ffffff;
  65. margin: 0.4em;
  66. border-collapse: collapse;
  67. border-radius: 0.4em;
  68. display: inline-block;
  69. vertical-align: top;
  70. max-width: 10em;
  71. }
  72. section#monster article.stage table.stats td,th{
  73. padding: 0.01em 0.5em;
  74. border: 0.1em solid #000000;
  75. }
  76. section#monster article.stage table.stats th{
  77. font-weight: bold;
  78. background-color: #00000066;
  79. }
  80. section#monster article.stage table.stats td{
  81. font-weight: bold;
  82. background-color: #ffffff33;
  83. }
  84. section#monster article.stage div.extra{
  85. display: inline-block;
  86. }
  87. section#monster article.stage div.extra div.sources span{
  88. display: block;
  89. font-size: 70%;
  90. margin: 0.5em 0 0 0;
  91. color: #ffffff;
  92. }
  93. section#monster article.stage div.extra div.sources img.source{
  94. width: 2em;
  95. height: 2em;
  96. border: 0.1em solid #f2c920;
  97. border-radius: 0.3em;
  98. }
  99. section#monster article.stage div.extra div.essences span{
  100. display: block;
  101. font-size: 70%;
  102. margin: 0.5em 0 0 0;
  103. color: #ffffff;
  104. }
  105. section#monster article.stage div.extra div.essences div.essence{
  106. position: relative;
  107. display: inline-block;
  108. vertical-align: top;
  109. border-style: solid;
  110. border-width: 0.1em;
  111. border-radius: 15%;
  112. width: 1.3em;
  113. height: 1.3em;
  114. margin-bottom: 0.1em;
  115. }
  116. section#monster article.stage div.extra div.essences div.essence img{
  117. position: absolute;
  118. top: 0;
  119. left: 0;
  120. width: 1.5em;
  121. height: 1.5em;
  122. }
  123. section#monster article.stage div.extra div.essences div.essence span{
  124. position: absolute;
  125. font-size: 80%;
  126. top: 0.15em;
  127. left: 0.8em;
  128. color: #ffffff;
  129. text-shadow: 0 0 0.1em #000000, 0 0 0.1em #000000, 0 0 0.2em #000000, 0 0 0.2em #000000;
  130. }
  131. section#monster article.stage div.skills{
  132. text-align: center;
  133. }
  134. section#monster article.stage div.skills div.skill{
  135. display: inline-block;
  136. vertical-align: top;
  137. margin: 0.5em;
  138. color: #ffffff;
  139. text-align: center;
  140. max-width: 20%;
  141. }
  142. section#monster article.stage div.skills div.skill img.skill_img{
  143. width: 4em;
  144. height: 4em;
  145. border: 0.2em solid #f2c920;
  146. border-radius: 0.4em;
  147. }
  148. section#monster article.stage div.skills div.skill span.skill_name{
  149. text-shadow: 0 0 0.2em #000000, 0 0 0.2em #000000, 0 0 0.4em #000000;
  150. display: block;
  151. font-weight: bold;
  152. font-size: 90%;
  153. }
  154. section#monster article.stage div.skills div.skill span.skill_description{
  155. font-size: 70%;
  156. font-style: italic;
  157. }
  158. section#monster article.stage div.skills div.skill span.skill_effects{
  159. display: block;
  160. text-align: center;
  161. margin-top: 1em;
  162. }
  163. section#monster article.stage div.skills div.skill span.skill_effects img.effect_img{
  164. width: 1.5em;
  165. height: 1.5em;
  166. border: 0.1em solid #000000;
  167. border-radius: 0.5em;
  168. }
  169. section#monster article.stage div.skills div.skill table.skill_up{
  170. font-size: 70%;
  171. margin-top: 1em;
  172. }
  173. section#monster article.stage div.skills div.skill table.skill_up td{
  174. color: #ffffff;
  175. padding: 0.03em 0.3em;
  176. }
  177. section#monster article.stage div.skills div.skill table.skill_up td.level{
  178. font-style: italic;
  179. padding-right: 0.8em;
  180. min-width: 3em;
  181. }