monster.css 7.9 KB

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