ui.css 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809
  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. /* Filters section, for lists. */
  313. section.filters{
  314. text-align:center;
  315. background-color: #775533;
  316. display: inline-block;
  317. min-width: 40%;
  318. }
  319. @media screen and (max-width : 990px){
  320. section.filters{
  321. font-size: 80%;
  322. }
  323. }
  324. section.filters table{
  325. margin: auto;
  326. }
  327. section.filters table td.filter{
  328. vertical-align: top;
  329. padding: 0.2em;
  330. text-align: center;
  331. color: #ffffff;
  332. }
  333. section.filters table td.filter span{
  334. display: block;
  335. margin: 0.1em;
  336. font-size: 80%;
  337. }
  338. section.filters div#filter_apply{
  339. text-align: center;
  340. margin: 0.5em auto 1em auto;
  341. }
  342. /* Main content, when it is a list of monsters, runes... */
  343. section.list{
  344. display: block;
  345. text-align: center;
  346. background-color: #331100;
  347. }
  348. /* Main content, when it a single monster, rune... */
  349. section.content{
  350. text-align: center;
  351. background-color: #553311;
  352. }
  353. /**
  354. * Rune boxes
  355. */
  356. div.rune_panel{
  357. width: 8em;
  358. height: 8em;
  359. border: 0.2em solid #000000;
  360. border-radius: 1em;
  361. position: relative;
  362. text-align: center;
  363. }
  364. div.rune_panel.rune_quality_normal{ /* Normal */
  365. background-image: repeating-radial-gradient(#ffffff, #cccccc 30%, #ffffff 60%);
  366. }
  367. div.rune_panel.rune_quality_magic{ /* Magic */
  368. background-image: repeating-radial-gradient(#aaffaa, #88cc88 30%, #aaffaa 60%);
  369. }
  370. div.rune_panel.rune_quality_rare{ /* Rare */
  371. background-image: repeating-radial-gradient(#aaaaff, #8888cc 30%, #aaaaff 60%);
  372. }
  373. div.rune_panel.rune_quality_hero{ /* Hero */
  374. background-image: repeating-radial-gradient(#ffaacc, #cc88aa 30%, #ffaacc 60%);
  375. }
  376. div.rune_panel.rune_quality_legend{ /* Legend */
  377. background-image: repeating-radial-gradient(#f48200, #b76201 30%, #f48200 60%);
  378. }
  379. div.rune_panel img.rune_base{
  380. position: absolute;
  381. width: 9em;
  382. height: 9em;
  383. margin: -0.5em;
  384. top: 0;
  385. left: 0;
  386. }
  387. div.rune_panel.rune_ancient_1 img.rune_base{
  388. filter: brightness(150%) contrast(90%) saturate(100%) drop-shadow(0 0 0.3em #ffffff) drop-shadow(0 0 0.1em #ffffff);
  389. }
  390. div.rune_panel.rune_slot_1 img.rune_base{
  391. transform: rotate(0deg);
  392. }
  393. div.rune_panel.rune_slot_2 img.rune_base{
  394. transform: rotate(57deg);
  395. }
  396. div.rune_panel.rune_slot_3 img.rune_base{
  397. transform: rotate(123deg);
  398. }
  399. div.rune_panel.rune_slot_4 img.rune_base{
  400. transform: rotate(180deg);
  401. }
  402. div.rune_panel.rune_slot_5 img.rune_base{
  403. transform: rotate(237deg);
  404. }
  405. div.rune_panel.rune_slot_6 img.rune_base{
  406. transform: rotate(303deg);
  407. }
  408. div.rune_panel img.rune_icon{
  409. position: absolute;
  410. height: 3em;
  411. }
  412. div.rune_panel.rune_slot_1 img.rune_icon{
  413. top: 3.4em;
  414. left: 3.1em;
  415. }
  416. div.rune_panel.rune_slot_2 img.rune_icon{
  417. top: 2.9em;
  418. left: 2.5em;
  419. }
  420. div.rune_panel.rune_slot_3 img.rune_icon{
  421. top: 2.2em;
  422. left: 2.5em;
  423. }
  424. div.rune_panel.rune_slot_4 img.rune_icon{
  425. top: 2em;
  426. left: 3.1em;
  427. }
  428. div.rune_panel.rune_slot_5 img.rune_icon{
  429. top: 2.2em;
  430. left: 3.5em;
  431. }
  432. div.rune_panel.rune_slot_6 img.rune_icon{
  433. top: 2.9em;
  434. left: 3.5em;
  435. }
  436. div.rune_panel.rune_original_quality_normal img.rune_icon{
  437. filter: sepia(100%) saturate(500%) grayscale(100%);
  438. }
  439. div.rune_panel.rune_original_quality_magic img.rune_icon{
  440. filter: sepia(100%) saturate(500%) hue-rotate(60deg);
  441. }
  442. div.rune_panel.rune_original_quality_rare img.rune_icon{
  443. filter: sepia(100%) saturate(500%) hue-rotate(120deg);
  444. }
  445. div.rune_panel.rune_original_quality_hero img.rune_icon{
  446. filter: sepia(100%) saturate(500%) hue-rotate(230deg);
  447. }
  448. div.rune_panel.rune_original_quality_legend img.rune_icon{
  449. filter: sepia(100%) saturate(500%) hue-rotate(330deg);
  450. }
  451. div.rune_panel span.rune_stars{
  452. position: absolute;
  453. width: 9em;
  454. left: 0.9em;
  455. top: 0.2em;
  456. text-align: left;
  457. }
  458. div.rune_panel span.rune_stars img.star{
  459. width: 1.2em;
  460. height: 1.2em;
  461. margin-left: -0.4em;
  462. filter: drop-shadow(0 0 0.1em #000000) drop-shadow(0 0 0.1em #000000);
  463. }
  464. div.rune_panel.rune_level_15 span.rune_stars img.star{
  465. filter: sepia(100%) saturate(300%) hue-rotate(320deg) saturate(400%) drop-shadow(0 0 0.1em #000000) drop-shadow(0 0 0.1em #000000);
  466. }
  467. div.rune_panel span.rune_level{
  468. font-size: 130%;
  469. font-weight: bold;
  470. color: #ffffff;
  471. 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;
  472. position: relative;
  473. top: 4.7em;
  474. left: 1.5em;
  475. }
  476. div.rune_panel span.rune_level::before {
  477. content: "+";
  478. }
  479. div.rune_panel.rune_level_15 span.rune_level{
  480. color: #ff6f2d;
  481. }
  482. /**
  483. * /Rune boxes
  484. */
  485. /**
  486. * Monster panel
  487. */
  488. div.monster_panel{
  489. display: inline-block;
  490. width: 7em;
  491. height: 7em;
  492. margin: 0.5em;
  493. position: relative;
  494. border-radius: 15%;
  495. }
  496. @media screen and (max-width : 990px){
  497. div.monster_panel{
  498. height: 6em;
  499. width: 6em;
  500. margin: 0.2em;
  501. }
  502. }
  503. div.monster_panel span.stars{
  504. position: absolute;
  505. top: 0.4em;
  506. right: 0.5em;
  507. }
  508. @media screen and (max-width : 990px){
  509. div.monster_panel span.stars{
  510. top: 0.3em;
  511. right: 0.4em;
  512. }
  513. }
  514. div.monster_panel span.stars img.star{
  515. width: 1em;
  516. height: 1em;
  517. margin-left: -0.4em;
  518. }
  519. @media screen and (max-width : 990px){
  520. div.monster_panel span.stars img.star{
  521. width: 0.9em;
  522. height: 0.9em;
  523. margin-left: -0.5em;
  524. }
  525. }
  526. div.monster_panel img.monster{
  527. width: 6.5em;
  528. height: 6.5em;
  529. border-style: solid;
  530. border-width: 0.3em;
  531. border-radius: 15%;
  532. }
  533. @media screen and (max-width : 990px){
  534. div.monster_panel img.monster{
  535. width: 5.6em;
  536. height: 5.6em;
  537. border-width: 0.2em;
  538. border-radius: 10%;
  539. }
  540. }
  541. div.monster_panel span.level{
  542. position: relative;
  543. bottom: 1.6em;
  544. font-weight: bold;
  545. color: #000;
  546. text-shadow: 0 0 0.1em #fff, 0 0 0.1em #fff, 0 0 0.2em #fff, 0 0 0.2em #fff;
  547. font-size: 100%;
  548. right: -1.5em;
  549. bottom: 1.5em;
  550. z-index: 1;
  551. }
  552. div.monster_panel span.level::before {
  553. content: "Lv. ";
  554. }
  555. /**
  556. * /Monster panel
  557. */
  558. /**
  559. * Rune table
  560. */
  561. table.rune{
  562. border-collapse: collapse;
  563. display: inline-block;
  564. vertical-align: top;
  565. font-size: 80%;
  566. position: relative;
  567. border-radius: 1em;
  568. margin: 0.5em;
  569. }
  570. table.rune{
  571. font-size: 70%;
  572. }
  573. table.rune td.icon div.assigned{
  574. max-width: 2.5em;
  575. max-height: 2.5em;
  576. position: absolute;
  577. left: 0.5em;
  578. bottom: 1em;
  579. }
  580. table.rune td.icon div.assigned img.monster_image{
  581. width: 2.5em;
  582. height: 2.5em;
  583. border-style: solid;
  584. border-width: 0.2em;
  585. border-radius: 15%;
  586. }
  587. table.rune td.icon{
  588. border-bottom: 0.2em solid #777777;
  589. border-left: 0.2em solid #777777;
  590. border-top: 0.2em solid #777777;
  591. background-color: #655c59;
  592. }
  593. table.rune td.icon div.rune_panel{
  594. font-size: 70%;
  595. }
  596. table.rune td.stats{
  597. color: #ffffff;
  598. border-bottom: 0.2em solid #777777;
  599. border-top: 0.2em solid #777777;
  600. background-color: #655c59;
  601. width: 8em;
  602. }
  603. table.rune td.stats table{
  604. color: #ffffff;
  605. font-size: 90%;
  606. }
  607. table.rune td.stats table tr.main_stat{
  608. font-weight: bold;
  609. font-size: 110%;
  610. }
  611. table.rune td.stats table tr.innate_stat{
  612. font-style: italic;
  613. }
  614. table.rune td.stats table td.stat{
  615. text-align: right;
  616. }
  617. table.rune td.stats table td.value{
  618. text-align: left;
  619. padding-left: 0.2em;
  620. vertical-align: middle;
  621. white-space: nowrap;
  622. }
  623. table.rune td.stats table td.value span.grind{
  624. color: #ff7700;
  625. vertical-align: middle;
  626. font-size: 90%;
  627. font-weight: bold;
  628. margin-left: -0.4em;
  629. }
  630. table.rune td.stats table td.value span.grind_{
  631. display: none;
  632. }
  633. table.rune td.stats table td.value img{
  634. width: 1em;
  635. height: 1em;
  636. margin: 0;
  637. vertical-align: middle;
  638. }
  639. table.rune td.details{
  640. color: #ffffff;
  641. padding-left: 0.5em;
  642. border-bottom: 0.2em solid #777777;
  643. border-right: 0.2em solid #777777;
  644. border-top: 0.2em solid #777777;
  645. background-color: #655c59;
  646. width: 16em;
  647. }
  648. table.rune td.details table.table_details{
  649. font-size: 80%;
  650. }
  651. table.rune td.details table.table_details td.title{
  652. text-align: right;
  653. }
  654. table.rune td.details table.table_details td.value{
  655. text-align: left;
  656. padding-left: 1em;
  657. }
  658. table.rune td.details table.table_details span.quality{
  659. border: 0.1em solid #000000;
  660. border-radius: 0.2em;
  661. font-weight: bold;
  662. color: #ffffff;
  663. text-shadow: 0 0 0.1em #000000;
  664. padding: 0 0.3em;
  665. width: 5em;
  666. }
  667. table.rune td.details table.table_details span.quality.quality_normal{
  668. background-color: #cccccc;
  669. }
  670. table.rune td.details table.table_details span.quality.quality_magic{
  671. background-color: #55ff55;
  672. }
  673. table.rune td.details table.table_details span.quality.quality_rare{
  674. background-color: #15c6e1;
  675. }
  676. table.rune td.details table.table_details span.quality.quality_hero{
  677. background-color: #ad7fa8;
  678. }
  679. table.rune td.details table.table_details span.quality.quality_legend{
  680. background-color: #f57900;
  681. }
  682. /**
  683. * /Rune table
  684. */
  685. /**
  686. * Craft item panel
  687. */
  688. div.craft_panel{
  689. width: 3em;
  690. height: 3em;
  691. border: 0.2em solid #000000;
  692. border-radius: 0.5em;
  693. position: relative;
  694. text-align: center;
  695. display: inline-block;
  696. }
  697. div.craft_panel.craft_quality_normal{ /* Normal */
  698. background-image: repeating-radial-gradient(#ffffff, #cccccc 30%, #ffffff 60%);
  699. }
  700. div.craft_panel.craft_quality_magic{ /* Magic */
  701. background-image: repeating-radial-gradient(#aaffaa, #88cc88 30%, #aaffaa 60%);
  702. }
  703. div.craft_panel.craft_quality_rare{ /* Rare */
  704. background-image: repeating-radial-gradient(#aaaaff, #8888cc 30%, #aaaaff 60%);
  705. }
  706. div.craft_panel.craft_quality_hero{ /* Hero */
  707. background-image: repeating-radial-gradient(#ffaacc, #cc88aa 30%, #ffaacc 60%);
  708. }
  709. div.craft_panel.craft_quality_legend{ /* Legend */
  710. background-image: repeating-radial-gradient(#f48200, #b76201 30%, #f48200 60%);
  711. }
  712. div.craft_panel img.craft_base{
  713. position: absolute;
  714. width: 3em;
  715. height: 3em;
  716. margin: -0.5em;
  717. top: 0.1em;
  718. left: 0.5em;
  719. }
  720. div.craft_panel img.craft_icon{
  721. position: absolute;
  722. width: 1em;
  723. height: 1em;
  724. top: 0.6em;
  725. left: 1em;
  726. }
  727. div.craft_panel.craft_ancient_1 img.craft_base{
  728. filter: brightness(150%) contrast(90%) saturate(100%) drop-shadow(0 0 0.3em #ffffff) drop-shadow(0 0 0.1em #ffffff);
  729. }
  730. div.craft_panel.craft_quality_normal img.craft_base{
  731. filter: sepia(100%) saturate(500%) grayscale(100%);
  732. }
  733. div.craft_panel.craft_quality_magic img.craft_base{
  734. filter: sepia(100%) saturate(500%) hue-rotate(60deg);
  735. }
  736. div.craft_panel.craft_quality_rare img.craft_base{
  737. filter: sepia(100%) saturate(500%) hue-rotate(120deg);
  738. }
  739. div.craft_panel.craft_quality_hero img.craft_base{
  740. filter: sepia(100%) saturate(500%) hue-rotate(230deg);
  741. }
  742. div.craft_panel.craft_quality_legend img.craft_base{
  743. filter: sepia(100%) saturate(500%) hue-rotate(330deg);
  744. }
  745. div.craft_panel span.craft_stat{
  746. display: block;
  747. width: 100%;
  748. text-align: center;
  749. font-size: 60%;
  750. color: #ffffff;
  751. 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;
  752. position: absolute;
  753. top: 2.7em;
  754. }
  755. div.craft_panel span.craft_stat span.craft_stat_name{
  756. display: block;
  757. margin: 0;
  758. }
  759. div.craft_panel span.craft_stat span.craft_stat_value{
  760. display: block;
  761. font-weight: bold;
  762. margin: 0;
  763. }