ui.css 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823
  1. :root {
  2. /**
  3. * Global elements
  4. */
  5. --global-color: #ffffff;
  6. --global-background: #000000;
  7. /**
  8. * Links.
  9. */
  10. --ui-color-a: #08fff6;
  11. --ui-color-a-hover: #cccccc;
  12. --ui-color-a-shadow: #000000;
  13. --ui-color-border: #c8ad78;
  14. /**
  15. * Header and footer.
  16. */
  17. --header-background: #79683c;
  18. --header-border: 0.15em solid var(--ui-color-border);
  19. --header-border-radius: 0.2em;
  20. --nav-color: var(--global-color);
  21. --nav-color-hover: #333333;
  22. --nav-background-hover: #ffffff33;
  23. --nav-separator: 0.1em solid #ffffff44;
  24. --nav-shadow: 0 0 0 #ffffff;
  25. --nav-shadow-hover: 0 0 0.2em #ffffff;
  26. /**
  27. * Sections.
  28. */
  29. --section-border: 0.15em solid var(--ui-color-border);
  30. --section-border-radius: 0.5em;
  31. --section-padding: 0.5em;
  32. --section-margin: 0.2em 2em 0.5em 2em;
  33. --section-title-margin: -0.5em -0.5em 0.5em -0.5em;
  34. --section-title-background: #6c2d0d;
  35. --section-title-border-radius: 0.35em;
  36. --section-title-padding: 0.2em 0 0.2em 2em;
  37. --section-title-font-size: 100%;
  38. --section-title-font-weight: bold;
  39. --section-background-list: #331100;
  40. --section-background-content: #755739;
  41. /**
  42. * Star filters.
  43. */
  44. --star-filter-silver: sepia(100%) saturate(500%) grayscale(100%) drop-shadow(0 0 0.1em #000000) drop-shadow(0 0 0.1em #000000) drop-shadow(0 0 0.1em #000000);
  45. --star-filter-gold: 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. --star-filter-purple: sepia(100%) saturate(500%) hue-rotate(250deg) saturate(500%) drop-shadow(0 0 0.1em #000) drop-shadow(0 0 0.1em #000) drop-shadow(0 0 0.1em #000);
  47. --star-filter-red: sepia(100%) saturate(500%) hue-rotate(320deg) saturate(500%) drop-shadow(0 0 0.1em #000) drop-shadow(0 0 0.1em #000) drop-shadow(0 0 0.1em #000);
  48. /**
  49. * Elemental colors.
  50. */
  51. --element-color-water: #0285f7;
  52. --element-color-fire: #f72302;
  53. --element-color-wind: #fcc923;
  54. --element-color-light: #f2f7aa;
  55. --element-color-dark: #4a0282;
  56. --element-color-magic: #e21af4;
  57. /**
  58. * Input elments
  59. */
  60. --input-color: #ffffff;
  61. --input-color-placeholder: #777777;
  62. --input-font-weight: normal;
  63. --input-padding: 0;
  64. --input-background: linear-gradient(0deg, rgba(187,132,64,1) 0%, rgba(200,173,120,1) 97%, rgba(209,169,143,1) 100%);
  65. --input-background-unchecked: rgb(96, 71, 40);
  66. --input-background-checked: rgba(209,169,143,1);
  67. --input-border: 0;/*0.2em solid var(--ui-color-border);*/
  68. --input-border-radius: 0.2em;
  69. --input-text-shadow: 0 0 0.1em #000000;
  70. --input-box-shadow: 0 0 0.2em #000000;
  71. --input-button-padding: 0.3em 1em 0.3em 1em;
  72. }
  73. .desktop{ /* Elements to be shown only in large screens. */
  74. display: initial;
  75. }
  76. @media screen and (max-width : 990px){
  77. .desktop{
  78. display: none;
  79. }
  80. }
  81. .mobile{ /* Elements to be shown only in small screens. */
  82. display: none;
  83. }
  84. @media screen and (max-width : 990px){
  85. .mobile{
  86. display: initial !important;
  87. }
  88. }
  89. .bold{font-weight: bold;}
  90. .italic{font-style: italic;}
  91. .pointer {cursor: pointer;}
  92. .hidden{display: none;}
  93. .pointer{cursor: pointer;}
  94. .error{border-color: #ffaaaa;}
  95. .color_Fire{color: var(--element-color-fire);}
  96. .color_Wind{color: var(--element-color-wind);}
  97. .color_Water{color: var(--element-color-water);}
  98. .color_Light{color: var(--element-color-light);}
  99. .color_Dark{color: var(--element-color-dark);}
  100. .color_Magic{color: var(--element-color-magic);}
  101. .border_Fire{border-color: var(--element-color-fire);}
  102. .border_Wind{border-color: var(--element-color-wind);}
  103. .border_Water{border-color: var(--element-color-water);}
  104. .border_Light{border-color: var(--element-color-light);}
  105. .border_Dark{border-color: var(--element-color-dark);}
  106. .border_Magic{border-color: var(--element-color-magic);}
  107. .background_Fire{background-color: var(--element-color-fire);}
  108. .background_Wind{background-color: var(--element-color-wind);}
  109. .background_Water{background-color: var(--element-color-water);}
  110. .background_Light{background-color: var(--element-color-light);}
  111. .background_Dark{background-color: var(--element-color-dark);}
  112. .background_Magic{background-color: var(--element-color-magic);}
  113. /* Star colors. */
  114. img.star.star_silver{filter: var(--star-filter-silver);}
  115. img.star.star_gold{filter: var(--star-filter-gold);}
  116. img.star.star_purple{filter: var(--star-filter-purple);}
  117. img.star.star_red{filter: var(--star-filter-red);}
  118. html {height: 100%;}
  119. body{
  120. background-color: var(--global-background);
  121. color: var(--global-color);
  122. height: 100%;
  123. padding: 0;
  124. margin: 0;
  125. text-align: center;
  126. }
  127. a{
  128. color: var(--ui-color-a);
  129. text-shadow: 0 0 0.5em var(--ui-color-a-shadow);
  130. text-decoration: none;
  131. transition: all .3s ease-in-out;
  132. }
  133. a:hover{
  134. color: var(--ui-color-a-hover);
  135. text-shadow: 0 0 0.1em var(--ui-color-a-shadow);
  136. }
  137. .fake_a{ /* Elements that look and act as links. */
  138. color: var(--ui-color-a);
  139. text-shadow: 0 0 0.5em var(--ui-color-a-shadow);
  140. text-decoration: none;
  141. cursor: pointer;
  142. transition: all .3s ease-in-out;
  143. }
  144. .fake_a:hover{
  145. color: var(--ui-color-a-hover);
  146. text-shadow: 0 0 0.1em var(--ui-color-a-shadow);
  147. }
  148. header{
  149. border-bottom: var(--header-border);
  150. /*border-left: var(--header-border);
  151. border-right: var(--header-border);*/
  152. border-bottom-right-radius: var(--header-border-radius);
  153. border-bottom-left-radius: var(--header-border-radius);
  154. margin: 0 0 1em 0;
  155. background-color: var(--header-background);
  156. text-align: left;
  157. }
  158. header div#logo{
  159. font-size: 70%;
  160. margin: auto;
  161. display: inline-block;
  162. vertical-align: middle;
  163. width: 10em;
  164. text-align: center;
  165. float: left;
  166. }
  167. header div#logo img#logo_img{
  168. max-width: 8em;
  169. max-height: 4em;
  170. }
  171. header div#logo h1#logo_text{
  172. font-style: italic;
  173. margin: -1.2em auto -0.7em auto;
  174. text-shadow: 0 0 0.1em var(--ui-color-a-shadow), 0 0 0.1em var(--ui-color-a-shadow);
  175. }
  176. header div#logo h1#logo_text span.large{font-size: 90%;}
  177. header div#logo h1#logo_text span.small{
  178. font-size: 60%;
  179. margin-left: -0.5em;
  180. }
  181. @media screen and (max-width : 990px){
  182. header div#logo{
  183. width: 8em;
  184. font-size: 60%;
  185. }
  186. header div#logo img#logo_img{
  187. max-width: 5em;
  188. max-height: 3em;
  189. }
  190. header div#logo h1#logo_text span.large{
  191. font-size: 50%;
  192. margin: -0.2em;
  193. }
  194. header div#logo h1#logo_text span.small{display: none;}
  195. }
  196. header nav#menu{
  197. display: inline-block;
  198. height: 2em;
  199. }
  200. header nav#menu a{
  201. font-size: 110%;
  202. font-weight: bold;
  203. text-transform: capitalize;
  204. font-variant: small-caps;
  205. margin: 0 -0.2em 0 0; /* -0.2 to compensate for strange space. */
  206. text-decoration: none;
  207. position: relative;
  208. transition: all .4s ease-in-out;
  209. color: var(--nav-color);
  210. border-left: var(--nav-separator);
  211. padding: 0.3em;
  212. text-align: center;
  213. display: inline-block;
  214. vertical-align: middle;
  215. text-shadow: var(--nav-shadow);
  216. }
  217. header nav#menu a:last-of-type{border-right: var(--nav-separator)}
  218. header nav#menu a:hover{
  219. background-color: var(--nav-background-hover);
  220. color: var(--nav-color-hover);
  221. text-shadow: var(--nav-shadow-hover);
  222. }
  223. @media screen and (max-width : 990px){
  224. header nav#menu{height: 2.5em;}
  225. header nav#menu a{
  226. font-size: 70%;
  227. padding: 0.6em 0.2em;
  228. margin: 0.3em -0.3em;
  229. display: inline-block;
  230. text-align: center;
  231. border-top: var(--nav-separator);
  232. border-bottom: var(--nav-separator);
  233. border-right: var(--nav-separator);
  234. }
  235. header nav#menu a:hover{
  236. text-shadow: 0 0 0 #000000;
  237. }
  238. }
  239. header nav#profile{
  240. float: right;
  241. margin-right: 0.5em;
  242. }
  243. header nav#profile a{
  244. border-left: 0;
  245. font-size: 110%;
  246. font-weight: bold;
  247. text-transform: capitalize;
  248. font-variant: small-caps;
  249. margin: 0;
  250. text-decoration: none;
  251. position: relative;
  252. transition: all .4s ease-in-out;
  253. color: var(--nav-color);
  254. padding: 0.3em;
  255. text-align: center;
  256. display: inline-block;
  257. vertical-align: middle;
  258. text-shadow: var(--nav-shadow);
  259. }
  260. header nav#profile a:hover{
  261. color: var(--nav-color-hover);
  262. text-shadow: var(--nav-shadow-hover);
  263. }
  264. footer{
  265. font-size: 80%;
  266. text-align: center;
  267. border-top: var(--header-border);
  268. /*border-left: var(--header-border);
  269. border-right: var(--header-border);*/
  270. border-top-right-radius: var(--header-border-radius);
  271. border-top-left-radius: var(--header-border-radius);
  272. margin: 2em 0 0 0;
  273. background-color: var(--header-background);
  274. padding: 1em 2em 1em 2em;
  275. }
  276. footer table#footer_table{
  277. margin-left: auto;
  278. margin-right: auto;
  279. width: 95%;
  280. table-layout: fixed;
  281. }
  282. footer table#footer_table td{
  283. width: 45%;
  284. padding: 0.5em;
  285. }
  286. @media screen and (max-width : 990px){
  287. footer table#footer_table td{
  288. width: auto;
  289. padding: 0.2em;
  290. font-size: 70%;
  291. line-height: 0.9em;
  292. }
  293. }
  294. input, select, a.a_button, textarea{
  295. font-size: 100%;
  296. text-transform: capitalize;
  297. font-variant: small-caps;
  298. cursor: pointer;
  299. color: var(--input-color);
  300. font-weight: var(--input-font-weight);
  301. padding: var(--input-padding);
  302. background: var(--input-background);
  303. border: var(--input-border);
  304. border-radius: var(--input-border-radius);
  305. text-shadow: var(--input-text-shadow);
  306. box-shadow: var(--input-box-shadow);
  307. }
  308. input[type=button], input[type=submit]{padding: var(--input-button-padding);}
  309. input[type=text], input[type=number], input[type=date], input[type=password], select{font-size: 80%;}
  310. input[type=number]{width: 3em;}
  311. select[multiple]{scrollbar-width: none;}
  312. input[type=checkbox]{
  313. display: none;
  314. margin-left: -2em;
  315. overflow: hidden;
  316. }
  317. input[type=checkbox] + label{
  318. display: inline-block;
  319. vertical-align: middle;
  320. cursor: pointer;
  321. }
  322. input[type=checkbox]:not(:checked) + label:before{
  323. content: " ";
  324. text-align: center;
  325. font-weight: bold;
  326. color: var(--input-color);
  327. text-shadow: var(--input-text-shadow);
  328. line-height: 0.8em;
  329. padding-top: 0.1em;
  330. display: inline-block;
  331. vertical-align: middle;
  332. width: 0.8em;
  333. height: 0.8em;
  334. margin-right: 0.5em;
  335. border: 0.2em solid var(--ui-color-border);
  336. border-radius: var(--input-border-radius);
  337. box-shadow: var(--input-box-shadow);
  338. background: var(--input-background-unchecked);
  339. }
  340. input[type=checkbox]:checked + label:before{
  341. content: "+";
  342. text-align: center;
  343. font-weight: bold;
  344. color: var(--input-color);
  345. text-shadow: var(--input-text-shadow);
  346. line-height: 0.8em;
  347. padding-top: 0.1em;
  348. display: inline-block;
  349. vertical-align: middle;
  350. width: 0.8em;
  351. height: 0.8em;
  352. margin-right: 0.5em;
  353. border: 0.2em solid var(--ui-color-border);
  354. border-radius: var(--input-border-radius);
  355. box-shadow: var(--input-box-shadow);
  356. background: var(--input-background-checked);
  357. }
  358. ::placeholder {color: var(--input-color-placeholder);}
  359. section{
  360. text-align: left;
  361. border: var(--section-border);
  362. border-radius: var(--section-border-radius);
  363. padding: var(--section-padding);
  364. margin: var(--section-margin);
  365. }
  366. section h2{
  367. margin: var(--section-title-margin);
  368. border-bottom: var(--section-border);
  369. background-color: var(--section-title-background);
  370. border-top-left-radius: var(--section-title-border-radius);
  371. border-top-right-radius: var(--section-title-border-radius);
  372. padding: var(--section-title-padding);
  373. font-size: var(--section-title-font-size);
  374. font-weight: var(--section-title-font-weight);
  375. text-align: left;
  376. text-transform: capitalize;
  377. font-variant: small-caps;
  378. height: 1.2em;
  379. }
  380. @media screen and (max-width : 990px){
  381. section h2{
  382. padding: 0.15em 0 0.15em 1em;
  383. }
  384. }
  385. /* Main content, when it is a list of monsters, runes... */
  386. section.list{
  387. display: block;
  388. text-align: center;
  389. background-color: var(--section-background-list);
  390. }
  391. /* Main content, when it a single monster, rune... */
  392. section.content{
  393. text-align: center;
  394. background-color: var(--section-background-content);
  395. }
  396. /**
  397. * Rune boxes
  398. */
  399. div.rune_panel{
  400. width: 8em;
  401. height: 8em;
  402. border: 0.2em solid #000000;
  403. border-radius: 1em;
  404. position: relative;
  405. text-align: center;
  406. }
  407. div.rune_panel.rune_quality_normal{ /* Normal */
  408. background-image: repeating-radial-gradient(#ffffff, #cccccc 30%, #ffffff 60%);
  409. }
  410. div.rune_panel.rune_quality_magic{ /* Magic */
  411. background-image: repeating-radial-gradient(#aaffaa, #88cc88 30%, #aaffaa 60%);
  412. }
  413. div.rune_panel.rune_quality_rare{ /* Rare */
  414. background-image: repeating-radial-gradient(#aaaaff, #8888cc 30%, #aaaaff 60%);
  415. }
  416. div.rune_panel.rune_quality_hero{ /* Hero */
  417. background-image: repeating-radial-gradient(#ffaacc, #cc88aa 30%, #ffaacc 60%);
  418. }
  419. div.rune_panel.rune_quality_legend{ /* Legend */
  420. background-image: repeating-radial-gradient(#f48200, #b76201 30%, #f48200 60%);
  421. }
  422. div.rune_panel img.rune_base{
  423. position: absolute;
  424. width: 9em;
  425. height: 9em;
  426. margin: -0.5em;
  427. top: 0;
  428. left: 0;
  429. }
  430. div.rune_panel.rune_ancient_1 img.rune_base{filter: brightness(150%) contrast(90%) saturate(100%) drop-shadow(0 0 0.3em #ffffff) drop-shadow(0 0 0.1em #ffffff);}
  431. div.rune_panel.rune_slot_1 img.rune_base{transform: rotate(0deg);}
  432. div.rune_panel.rune_slot_2 img.rune_base{transform: rotate(57deg);}
  433. div.rune_panel.rune_slot_3 img.rune_base{transform: rotate(123deg);}
  434. div.rune_panel.rune_slot_4 img.rune_base{transform: rotate(180deg);}
  435. div.rune_panel.rune_slot_5 img.rune_base{transform: rotate(237deg);}
  436. div.rune_panel.rune_slot_6 img.rune_base{transform: rotate(303deg);}
  437. div.rune_panel img.rune_icon{
  438. position: absolute;
  439. height: 3em;
  440. }
  441. div.rune_panel.rune_slot_1 img.rune_icon{
  442. top: 3.0em;
  443. left: 2.7em;
  444. }
  445. div.rune_panel.rune_slot_2 img.rune_icon{
  446. top: 2.9em;
  447. left: 2.3em;
  448. }
  449. div.rune_panel.rune_slot_3 img.rune_icon{
  450. top: 2.2em;
  451. left: 2.3em;
  452. }
  453. div.rune_panel.rune_slot_4 img.rune_icon{
  454. top: 2em;
  455. left: 2.8em;
  456. }
  457. div.rune_panel.rune_slot_5 img.rune_icon{
  458. top: 2.2em;
  459. left: 3.3em;
  460. }
  461. div.rune_panel.rune_slot_6 img.rune_icon{
  462. top: 2.9em;
  463. left: 3.3em;
  464. }
  465. div.rune_panel.rune_original_quality_normal img.rune_icon{filter: sepia(100%) saturate(500%) grayscale(100%);}
  466. div.rune_panel.rune_original_quality_magic img.rune_icon{filter: sepia(100%) saturate(500%) hue-rotate(60deg);}
  467. div.rune_panel.rune_original_quality_rare img.rune_icon{filter: sepia(100%) saturate(500%) hue-rotate(120deg);}
  468. div.rune_panel.rune_original_quality_hero img.rune_icon{filter: sepia(100%) saturate(500%) hue-rotate(230deg);}
  469. div.rune_panel.rune_original_quality_legend img.rune_icon{filter: sepia(100%) saturate(500%) hue-rotate(330deg);}
  470. div.rune_panel span.rune_stars{
  471. position: absolute;
  472. width: 9em;
  473. left: 0.9em;
  474. top: 0.2em;
  475. text-align: left;
  476. }
  477. div.rune_panel span.rune_stars img.star{
  478. width: 1.2em;
  479. height: 1.2em;
  480. margin-left: -0.4em;
  481. filter: drop-shadow(0 0 0.1em #000000) drop-shadow(0 0 0.1em #000000);
  482. }
  483. div.rune_panel.rune_level_15 span.rune_stars img.star{filter: sepia(100%) saturate(300%) hue-rotate(320deg) saturate(400%) drop-shadow(0 0 0.1em #000000) drop-shadow(0 0 0.1em #000000);}
  484. div.rune_panel span.rune_level{
  485. font-size: 130%;
  486. font-weight: bold;
  487. 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;
  488. position: relative;
  489. top: 4.7em;
  490. left: 1.5em;
  491. }
  492. div.rune_panel span.rune_level::before {
  493. content: "+";
  494. }
  495. div.rune_panel.rune_level_15 span.rune_level{color: #ff6f2d;}
  496. /**
  497. * /Rune boxes
  498. */
  499. /**
  500. * Monster panel
  501. */
  502. div.monster_panel{
  503. display: inline-block;
  504. width: 7em;
  505. height: 7em;
  506. margin: 0.5em;
  507. position: relative;
  508. border-radius: 15%;
  509. }
  510. @media screen and (max-width : 990px){
  511. div.monster_panel{
  512. height: 6em;
  513. width: 6em;
  514. margin: 0.2em;
  515. }
  516. }
  517. div.monster_panel span.stars{
  518. position: absolute;
  519. top: 0.4em;
  520. right: 0.5em;
  521. pointer-events: none;
  522. }
  523. @media screen and (max-width : 990px){
  524. div.monster_panel span.stars{
  525. top: 0.3em;
  526. right: 0.4em;
  527. }
  528. }
  529. div.monster_panel span.stars img.star{
  530. width: 1.3em;
  531. height: 1.3em;
  532. margin-left: -0.65em;
  533. pointer-events: none;
  534. }
  535. @media screen and (max-width : 990px){
  536. div.monster_panel span.stars img.star{
  537. width: 0.9em;
  538. height: 0.9em;
  539. margin-left: -0.5em;
  540. }
  541. }
  542. div.monster_panel img.monster{
  543. width: 6.5em;
  544. height: 6.5em;
  545. border-style: solid;
  546. border-width: 0.3em;
  547. border-radius: 15%;
  548. }
  549. @media screen and (max-width : 990px){
  550. div.monster_panel img.monster{
  551. width: 5.6em;
  552. height: 5.6em;
  553. border-width: 0.2em;
  554. border-radius: 10%;
  555. }
  556. }
  557. div.monster_panel span.level{
  558. position: relative;
  559. font-weight: bold;
  560. color: #000;
  561. text-shadow: 0 0 0.1em #fff, 0 0 0.1em #fff, 0 0 0.2em #fff, 0 0 0.2em #fff, 0 0 0.5em #fff, 0 0 0.5em #fff;
  562. font-size: 2em;
  563. width: 90%;
  564. text-align: right;
  565. bottom: 1.3em;
  566. z-index: 1;
  567. pointer-events: none;
  568. display: block;
  569. }
  570. div.monster_panel span.badges{
  571. position: absolute;
  572. width: 1.6em;
  573. text-align: left;
  574. top: 1.5em;
  575. bottom: 0.6em;
  576. left: 0.1em;
  577. z-index: 1;
  578. pointer-events: none;
  579. display: block;
  580. transform: rotate(180deg);
  581. }
  582. div.monster_panel span.badges img{
  583. width: 1em;
  584. height: 1em;
  585. /* filter: drop-shadow(0 0 0.3em #ffffff) drop-shadow(0 0 0.1em #ffffff); */
  586. border-radius: 50%;
  587. border: 0.15em solid #000000;
  588. background-color: #ffffff;
  589. transform: rotate(180deg);
  590. margin: -0.11em 0 -0.11em 0;
  591. }
  592. /**
  593. * /Monster panel
  594. */
  595. /**
  596. * Monster transformation panel
  597. */
  598. div.monster_transformation_panel{
  599. display: inline-block;
  600. width: 4em;
  601. height: 4em;
  602. margin: 0.5em 0.5em 0.5em -0.5em;
  603. position: relative;
  604. border-radius: 15%;
  605. }
  606. @media screen and (max-width : 990px){
  607. div.monster_transformation_panel{
  608. height: 3em;
  609. width: 3em;
  610. margin: 0.2em 0.2em 0.2em -0.2em;
  611. }
  612. }
  613. div.monster_transformation_panel img.monster_transformation{
  614. width: 3.5em;
  615. height: 3.5em;
  616. border-style: solid;
  617. border-width: 0.2em;
  618. border-radius: 35%;
  619. }
  620. @media screen and (max-width : 990px){
  621. div.monster_transformation_panel img.monster_transformation{
  622. width: 2.6em;
  623. height: 2.6em;
  624. border-width: 0.1em;
  625. border-radius: 20%;
  626. }
  627. }
  628. /**
  629. * /Monster transformation panel
  630. */
  631. /**
  632. * Rune table
  633. */
  634. table.rune{
  635. border-collapse: collapse;
  636. display: inline-block;
  637. vertical-align: top;
  638. font-size: 80%;
  639. position: relative;
  640. border-radius: 1em;
  641. margin: 0.5em;
  642. background-color: #7d6640;
  643. font-size: 70%;
  644. border: 0.3em solid #3c2929;
  645. }
  646. table.rune td.icon div.assigned{
  647. max-width: 2.5em;
  648. max-height: 2.5em;
  649. position: absolute;
  650. left: 0.5em;
  651. bottom: 1em;
  652. }
  653. table.rune td.icon div.assigned img.monster_image{
  654. width: 2.5em;
  655. height: 2.5em;
  656. border-style: solid;
  657. border-width: 0.2em;
  658. border-radius: 15%;
  659. }
  660. table.rune td.icon div.rune_panel{font-size: 70%;}
  661. table.rune td.stats{width: 8em;}
  662. table.rune td.stats table{font-size: 90%;}
  663. table.rune td.stats table tr.main_stat{
  664. font-weight: bold;
  665. font-size: 110%;
  666. }
  667. table.rune td.stats table tr.innate_stat{font-style: italic;}
  668. table.rune td.stats table td.stat{text-align: right;}
  669. table.rune td.stats table td.value{
  670. text-align: left;
  671. padding-left: 0.2em;
  672. vertical-align: middle;
  673. white-space: nowrap;
  674. }
  675. table.rune td.stats table td.value span.grind{
  676. color: #ff7700;
  677. vertical-align: middle;
  678. font-size: 90%;
  679. font-weight: bold;
  680. margin-left: -0.4em;
  681. }
  682. table.rune td.stats table td.value span.grind_{display: none;}
  683. table.rune td.stats table td.value img{
  684. width: 1em;
  685. height: 1em;
  686. margin: 0;
  687. vertical-align: middle;
  688. }
  689. table.rune td.details{
  690. padding-left: 0.5em;
  691. width: 16em;
  692. font-size: 80%;
  693. }
  694. table.rune td.details table.table_details td.title{text-align: right;}
  695. table.rune td.details table.table_details td.value{
  696. text-align: left;
  697. padding-left: 1em;
  698. }
  699. table.rune td.details table.table_details span.quality{
  700. border: 0.1em solid #000000;
  701. border-radius: 0.2em;
  702. font-weight: bold;
  703. text-shadow: 0 0 0.1em #000000;
  704. padding: 0 0.3em;
  705. width: 5em;
  706. }
  707. table.rune td.details table.table_details span.quality.quality_normal{background-color: #cccccc;}
  708. table.rune td.details table.table_details span.quality.quality_magic{background-color: #55ff55;}
  709. table.rune td.details table.table_details span.quality.quality_rare{background-color: #15c6e1;}
  710. table.rune td.details table.table_details span.quality.quality_hero{background-color: #ad7fa8;}
  711. table.rune td.details table.table_details span.quality.quality_legend{background-color: #f57900;}
  712. /**
  713. * /Rune table
  714. */
  715. /**
  716. * Craft item panel
  717. */
  718. div.craft_panel{
  719. width: 3em;
  720. height: 3em;
  721. border: 0.1em solid #3c2929;
  722. border-radius: 0.5em;
  723. position: relative;
  724. text-align: center;
  725. display: inline-block;
  726. }
  727. div.craft_panel.craft_quality_normal{ /* Normal */
  728. background-image: repeating-radial-gradient(#ffffff, #cccccc 30%, #ffffff 60%);
  729. }
  730. div.craft_panel.craft_quality_magic{ /* Magic */
  731. background-image: repeating-radial-gradient(#aaffaa, #88cc88 30%, #aaffaa 60%);
  732. }
  733. div.craft_panel.craft_quality_rare{ /* Rare */
  734. background-image: repeating-radial-gradient(#aaaaff, #8888cc 30%, #aaaaff 60%);
  735. }
  736. div.craft_panel.craft_quality_hero{ /* Hero */
  737. background-image: repeating-radial-gradient(#ffaacc, #cc88aa 30%, #ffaacc 60%);
  738. }
  739. div.craft_panel.craft_quality_legend{ /* Legend */
  740. background-image: repeating-radial-gradient(#f48200, #b76201 30%, #f48200 60%);
  741. }
  742. div.craft_panel img.craft_base{
  743. position: absolute;
  744. width: 3em;
  745. height: 3em;
  746. margin: -0.5em;
  747. top: 0.1em;
  748. left: 0.5em;
  749. }
  750. div.craft_panel img.craft_icon{
  751. position: absolute;
  752. width: 1em;
  753. height: 1em;
  754. top: 0.6em;
  755. left: 1em;
  756. }
  757. div.craft_panel.craft_ancient_1 img.craft_base{filter: brightness(150%) contrast(90%) saturate(100%) drop-shadow(0 0 0.3em #ffffff) drop-shadow(0 0 0.1em #ffffff);}
  758. div.craft_panel.craft_quality_normal img.craft_base{filter: sepia(100%) saturate(500%) grayscale(100%);}
  759. div.craft_panel.craft_quality_magic img.craft_base{filter: sepia(100%) saturate(500%) hue-rotate(60deg);}
  760. div.craft_panel.craft_quality_rare img.craft_base{filter: sepia(100%) saturate(500%) hue-rotate(120deg);}
  761. div.craft_panel.craft_quality_hero img.craft_base{filter: sepia(100%) saturate(500%) hue-rotate(230deg);}
  762. div.craft_panel.craft_quality_legend img.craft_base{filter: sepia(100%) saturate(500%) hue-rotate(330deg);}
  763. div.craft_panel span.craft_stat{
  764. display: block;
  765. width: 100%;
  766. text-align: center;
  767. font-size: 60%;
  768. 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;
  769. position: absolute;
  770. top: 2.7em;
  771. }
  772. div.craft_panel span.craft_stat span.craft_stat_name{
  773. display: block;
  774. margin: 0;
  775. }
  776. div.craft_panel span.craft_stat span.craft_stat_value{
  777. display: block;
  778. font-weight: bold;
  779. margin: 0;
  780. }