ui.css 17 KB

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