monster.css 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332
  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#profile{
  13. max-width: 60%;
  14. display: inline-block;
  15. vertical-align: top;
  16. /*width: 7em;*/
  17. border: 0.2em solid #000000;
  18. margin: 0.5em;
  19. position: relative;
  20. border-radius: 1em;
  21. background: #351e0b;
  22. border: 0.2em solid #f2c920;
  23. border-radius: 0.5em;
  24. padding: 0.5em;
  25. }
  26. @media screen and (max-width : 990px){
  27. section#monster article#profile{
  28. width: 95%;
  29. max-width: 95%;
  30. margin: 0.2em auto;
  31. display: block;
  32. }
  33. }
  34. section#monster article#profile img#monster_image{
  35. max-width: 12em;
  36. max-height: 12em;
  37. border-style: solid;
  38. border-width: 0.3em;
  39. border-radius: 15%;
  40. display: inline-block;
  41. vertical-align: top;
  42. margin: 0 1.5em 1.5em 1.5em;
  43. }
  44. section#monster article#profile div#details{
  45. display: inline-block;
  46. vertical-align: top;
  47. text-align: center;
  48. }
  49. section#monster article#profile div#details h1{
  50. color: #ffffff;
  51. text-shadow: 0 0 0.2em #000000, 0 0 0.2em #000000, 0 0 0.2em #000000, 0 0 0.2em #000000, 0 0 0.2em #000000;
  52. font-size: 190%;
  53. margin: 0.2em;
  54. }
  55. section#monster article#profile div#details span.stars{
  56. display: block;
  57. }
  58. section#monster article#profile div#details span.stars img.star{
  59. width: 1.5em;
  60. height: 1.5em;
  61. filter: drop-shadow(0 0 0.05em #ffffff);
  62. margin: -0.1em;
  63. }
  64. section#monster article#profile div#details span.level{
  65. color: #ffffff;
  66. display: block;
  67. text-shadow: 0 0 0.2em #000000, 0 0 0.2em #000000;
  68. }
  69. section#monster article#profile h4{
  70. color: #ffffff;
  71. font-weight: bold;
  72. text-shadow: 0 0 0.2em #000000, 0 0 0.2em #000000, 0 0 0.4em #000000;
  73. margin: 0.1em;
  74. display: block;
  75. }
  76. section#monster article#profile table#stats{
  77. font-size: 100%;
  78. border: 0.1em solid black;
  79. color: #ffffff;
  80. margin: 2em auto 2em auto;
  81. border-collapse: collapse;
  82. border-radius: 0.4em;
  83. }
  84. section#monster article#profile table#stats th{
  85. font-weight: bold;
  86. background-color: #00000066;
  87. }
  88. section#monster article#profile table#stats td{
  89. font-weight: bold;
  90. background-color: #ffffff33;
  91. }
  92. section#monster article#profile table#stats td, th{
  93. padding: 0.2em;
  94. border: 0.1em solid #000000;
  95. }
  96. section#monster article#profile table#stats td.extra{
  97. color: #aaaaff;
  98. }
  99. section#monster article#profile table#stats td.total{
  100. color: #f2c920;
  101. font-weight: bold;
  102. }
  103. section#monster article#profile div#skills{
  104. text-align: center;
  105. }
  106. section#monster article#profile div#skills div.skill{
  107. display: inline-block;
  108. vertical-align: top;
  109. margin: 0.5em;
  110. color: #ffffff;
  111. text-align: center;
  112. max-width: 20%;
  113. }
  114. section#monster article#profile div#skills div.skill img.skill_img{
  115. width: 5em;
  116. height: 5em;
  117. border: 0.3em solid #f2c920;
  118. border-radius: 0.5em;
  119. }
  120. section#monster article#profile div#skills div.skill span.skill_level{
  121. font-size: 130%;
  122. position: relative;
  123. top: -2em;
  124. right: -0.8em;
  125. text-shadow: 0 0 0.2em #000000, 0 0 0.2em #000000, 0 0 0.4em #000000, 0 0 0.4em #000000, 0 0 0.6em #000000, 0 0 0.6em #000000, 0 0 0.8em #000000, 0 0 0.8em #000000;
  126. }
  127. section#monster article#profile div#skills div.skill span.skill_level.maxed{
  128. color: #f2c920;
  129. }
  130. section#monster article#profile div#skills div.skill span.skill_name{
  131. text-shadow: 0 0 0.2em #000000, 0 0 0.2em #000000, 0 0 0.4em #000000;
  132. margin-top: -2.5em;
  133. display: block;
  134. font-weight: bold;
  135. }
  136. section#monster article#profile div#skills div.skill span.skill_description{
  137. font-size: 90%;
  138. font-style: italic;
  139. }
  140. section#monster article#profile div#skills div.skill span.skill_effects{
  141. display: block;
  142. text-align: center;
  143. margin-top: 1em;
  144. }
  145. section#monster article#profile div#skills div.skill span.skill_effects img.effect_img{
  146. width: 1.5em;
  147. height: 1.5em;
  148. border: 0.1em solid #000000;
  149. border-radius: 0.5em;
  150. }
  151. section#monster article#profile div#skills div.skill table.skill_up{
  152. font-size: 80%;
  153. margin-top: 1em;
  154. }
  155. section#monster article#profile div#skills div.skill table.skill_up td{
  156. color: #888888;
  157. }
  158. section#monster article#profile div#skills div.skill table.skill_up td.level{
  159. font-style: italic;
  160. padding-right: 0.8em;
  161. min-width: 3em;
  162. }
  163. section#monster article#profile div#skills div.skill table.skill_up td.aquired{
  164. color: #ffffff;
  165. font-weight: bold;
  166. }
  167. section#monster article#profile table#skill_averages{
  168. margin: 3em auto 2em auto;
  169. color: #ffffff;
  170. font-size: 120%;
  171. border-top: 0.1em solid #ffffff;
  172. border-bottom: 0.1em solid #ffffff;
  173. border-radius: 0.3em;
  174. padding-top: 2em;
  175. padding-bottom: 2em;
  176. }
  177. section#monster article#profile table#skill_averages td.title{
  178. padding-left: 4em;
  179. text-align: right;
  180. }
  181. section#monster article#profile table#skill_averages td.value{
  182. padding-right: 4em;
  183. text-align: left;
  184. padding-left: 1em;
  185. }
  186. section#monster article#runes{
  187. max-width: 45%;
  188. display: inline-block;
  189. vertical-align: top;
  190. /*width: 7em;*/
  191. border: 0.2em solid #000000;
  192. margin: 0.5em;
  193. position: relative;
  194. border-radius: 15%;
  195. background: #351e0b;
  196. border: 0.2em solid #f2c920;
  197. border-radius: 0.5em;
  198. padding: 0em;
  199. }
  200. @media screen and (max-width : 990px){
  201. section#monster article#runes{
  202. width: 95%;
  203. max-width: 95%;
  204. }
  205. }
  206. section#monster article#runes table#table_runes{
  207. border-collapse: collapse;
  208. }
  209. section#monster article#runes table#table_runes td.stats{
  210. color: #ffffff;
  211. border-bottom: 0.1em solid #ffffff;
  212. }
  213. section#monster article#runes table#table_runes td.stats table{
  214. color: #ffffff;
  215. font-size: 80%;
  216. }
  217. section#monster article#runes table#table_runes td.stats table tr.main_stat{
  218. font-weight: bold;
  219. font-size: 110%;
  220. }
  221. section#monster article#runes table#table_runes td.stats table tr.innate_stat{
  222. font-style: italic;
  223. }
  224. section#monster article#runes table#table_runes td.stats table td.stat{
  225. text-align: right;
  226. }
  227. section#monster article#runes table#table_runes td.stats table td.value{
  228. text-align: left;
  229. padding-left: 1em;
  230. }
  231. section#monster article#runes table#table_runes td.stats table td.craft{
  232. color: #ff7700;
  233. }
  234. section#monster article#runes table#table_runes td.details{
  235. color: #ffffff;
  236. border-bottom: 0.1em solid #ffffff;
  237. padding-left: 0.5em;
  238. }
  239. section#monster article#runes table#table_runes td.details table.table_details{
  240. font-size: 80%;
  241. }
  242. section#monster article#runes table#table_runes td.details table.table_details td.title{
  243. text-align: right;
  244. }
  245. section#monster article#runes table#table_runes td.details table.table_details td.value{
  246. text-align: left;
  247. padding-left: 1em;
  248. }
  249. section#monster article#runes table#table_runes td.details table.table_details span.quality{
  250. border: 0.1em solid #000000;
  251. border-radius: 0.2em;
  252. font-weight: bold;
  253. color: #ffffff;
  254. text-shadow: 0 0 0.1em #000000;
  255. padding: 0 0.3em;
  256. }
  257. section#monster article#runes table#table_runes td.details table.table_details span.quality.quality_normal{
  258. background-color: #cccccc;
  259. }
  260. section#monster article#runes table#table_runes td.details table.table_details span.quality.quality_magic{
  261. background-color: #55ff55;
  262. }
  263. section#monster article#runes table#table_runes td.details table.table_details span.quality.quality_rare{
  264. background-color: #15c6e1;
  265. }
  266. section#monster article#runes table#table_runes td.details table.table_details span.quality.quality_hero{
  267. background-color: #ad7fa8;
  268. }
  269. section#monster article#runes table#table_runes td.details table.table_details span.quality.quality_legend{
  270. background-color: #f57900;
  271. }
  272. section#monster article#runes table#table_runes td.details{
  273. color: #ffffff;
  274. border-bottom: 0.1em solid #ffffff;
  275. padding-left: 0.5em;
  276. }
  277. section#monster article#runes div#rune_averages{
  278. margin: 5em auto 2em auto;
  279. text-align: center;
  280. }
  281. section#monster article#runes div#rune_averages table#table_averages{
  282. margin: auto;
  283. color: #ffffff;
  284. }
  285. section#monster article#runes div#rune_averages table#table_averages td.title{
  286. text-align: right;
  287. }
  288. section#monster article#runes div#rune_averages table#table_averages td.value{
  289. text-align: left;
  290. padding-left: 1em;
  291. }