ui.css 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708
  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. }
  169. header nav a{
  170. font-size: 2em;
  171. font-weight: bold;
  172. margin: 0.5em;
  173. color: #ffffff;
  174. text-decoration: none;
  175. position: relative;
  176. transition: all .4s ease-in-out;
  177. }
  178. header nav a:hover{
  179. color: #333333;
  180. text-shadow: 0 0 0.7em #ffffff;
  181. }
  182. @media screen and (max-width : 990px){
  183. header nav a{
  184. font-size: 1.2em;
  185. margin: 0.2em 0.5em;
  186. display: block;
  187. }
  188. header nav a:hover{
  189. color: #ffffff;
  190. text-shadow: 0 0 0 #000000;
  191. }
  192. }
  193. footer{
  194. color: #ffffff;
  195. font-size: 80%;
  196. text-align: center;
  197. border-top: 0.2em solid #f2c920;
  198. border-left: 0.2em solid #f2c920;
  199. border-right: 0.2em solid #f2c920;
  200. border-top-right-radius: 1.5em;
  201. border-top-left-radius: 1.5em;
  202. margin: 2em 0 0 0;
  203. background-color: #884444;
  204. padding: 1em 2em 1em 2em;
  205. }
  206. footer table#footer_table{
  207. margin-left: auto;
  208. margin-right: auto;
  209. width: 95%;
  210. table-layout: fixed;
  211. }
  212. footer table#footer_table td{
  213. width: 33%;
  214. padding: 0.5em;
  215. }
  216. @media screen and (max-width : 990px){
  217. footer table#footer_table td{
  218. width: auto;
  219. padding: 0.2em;
  220. font-size: 70%;
  221. }
  222. }
  223. input[type=button], input[type=submit]{
  224. font-size: 100%;
  225. font-weight: bold;
  226. color: #ffffff;
  227. padding: 0.3em 1em 0.3em 1em;
  228. background-color: #351e0b;
  229. border: 0.2em solid #f2c920;
  230. border-radius: 0.5em;
  231. text-shadow: 0 0 0.2em #000000;
  232. cursor: pointer;
  233. box-shadow: 0 0 0.3em #000000;
  234. }
  235. input[type=text], input[type=number]{
  236. font-size: 80%;
  237. font-weight: bold;
  238. color: #ffffff;
  239. padding: 0 0.3em;
  240. background-color: #351e0b;
  241. border: 0.2em solid #f2c920;
  242. border-radius: 0.5em;
  243. box-shadow: 0 0 0.3em #000000;
  244. }
  245. input[type=number]{
  246. width: 3em;
  247. }
  248. input[type=checkbox]{
  249. font-weight: bold;
  250. color: #ffffff;
  251. background-color: #351e0b;
  252. border: 0.2em solid #f2c920;
  253. border-radius: 0.5em;
  254. text-shadow: 0 0 0.2em #000000;
  255. cursor: pointer;
  256. box-shadow: 0 0 0.3em #000000;
  257. }
  258. select{
  259. font-size: 80%;
  260. font-weight: bold;
  261. color: #ffffff;
  262. padding: 0 0.1em;
  263. background-color: #351e0b;
  264. border: 0.2em solid #f2c920;
  265. border-radius: 0.5em;
  266. text-shadow: 0 0 0.2em #000000;
  267. cursor: pointer;
  268. box-shadow: 0 0 0.3em #000000;
  269. }
  270. a.a_button{ /* Links that look like buttons. */
  271. font-size: 100%;
  272. font-weight: bold;
  273. color: #ffffff;
  274. padding: 0.3em 1em 0.3em 1em;
  275. background-color: #351e0b;
  276. border: 0.2em solid #f2c920;;
  277. border-radius: 0.5em;
  278. text-shadow: 0 0 0.2em #000000;
  279. cursor: pointer;
  280. box-shadow: 0 0 0.3em #000000;
  281. display: inline-block;
  282. }
  283. ::placeholder {
  284. color: #777777;
  285. }
  286. section{
  287. text-align: left;
  288. border: 0.2em solid #f2c920;
  289. border-radius: 0.5em;
  290. padding: 0.5em;
  291. margin: 0.2em 2em 0.5em 2em;
  292. }
  293. section h2{
  294. margin: -0.25em -0.25em 0.5em -0.25em;
  295. border-bottom: 0.1em solid #f2c920;
  296. background-color: #000000bb;
  297. color: #ffffff;
  298. text-align: left;
  299. border-top-left-radius: 0.25em;
  300. border-top-right-radius: 0.25em;
  301. padding: 0.25em 0 0.25em 2em;
  302. font-size: 200%;
  303. font-weight: bold;
  304. }
  305. @media screen and (max-width : 990px){
  306. section h2{
  307. padding: 0.15em 0 0.15em 1em;
  308. }
  309. }
  310. /* Filters section, for lists. */
  311. section.filters{
  312. text-align:center;
  313. background-color: #775533;
  314. display: inline-block;
  315. min-width: 40%;
  316. }
  317. @media screen and (max-width : 990px){
  318. section.filters{
  319. font-size: 80%;
  320. }
  321. }
  322. section.filters table{
  323. margin: auto;
  324. }
  325. section.filters table td.filter{
  326. vertical-align: top;
  327. padding: 0.2em;
  328. text-align: center;
  329. color: #ffffff;
  330. }
  331. section.filters table td.filter span{
  332. display: block;
  333. margin: 0.1em;
  334. font-size: 80%;
  335. }
  336. section.filters div#filter_apply{
  337. text-align: center;
  338. margin: 0.5em auto 1em auto;
  339. }
  340. /* Main content, when it is a list of monsters, runes... */
  341. section.list{
  342. display: block;
  343. text-align: center;
  344. background-color: #331100;
  345. }
  346. /* Main content, when it a single monster, rune... */
  347. section.content{
  348. text-align: center;
  349. background-color: #553311;
  350. }
  351. /**
  352. * Rune boxes
  353. */
  354. div.rune_panel{
  355. width: 8em;
  356. height: 8em;
  357. border: 0.2em solid #000000;
  358. border-radius: 1em;
  359. position: relative;
  360. text-align: center;
  361. }
  362. div.rune_panel.rune_quality_0{ /* Normal */
  363. background-image: repeating-radial-gradient(#ffffff, #cccccc 30%, #ffffff 60%);
  364. }
  365. div.rune_panel.rune_quality_1{ /* Magic */
  366. background-image: repeating-radial-gradient(#aaffaa, #88cc88 30%, #aaffaa 60%);
  367. }
  368. div.rune_panel.rune_quality_2{ /* Rare */
  369. background-image: repeating-radial-gradient(#aaaaff, #8888cc 30%, #aaaaff 60%);
  370. }
  371. div.rune_panel.rune_quality_3{ /* Hero */
  372. background-image: repeating-radial-gradient(#ffaacc, #cc88aa 30%, #ffaacc 60%);
  373. }
  374. div.rune_panel.rune_quality_4{ /* Legend */
  375. background-image: repeating-radial-gradient(#f48200, #b76201 30%, #f48200 60%);
  376. }
  377. div.rune_panel img.rune_base{
  378. position: absolute;
  379. width: 9em;
  380. height: 9em;
  381. margin: -0.5em;
  382. top: 0;
  383. left: 0;
  384. }
  385. div.rune_panel.rune_slot_1 img.rune_base{
  386. transform: rotate(0deg);
  387. }
  388. div.rune_panel.rune_slot_2 img.rune_base{
  389. transform: rotate(57deg);
  390. }
  391. div.rune_panel.rune_slot_3 img.rune_base{
  392. transform: rotate(123deg);
  393. }
  394. div.rune_panel.rune_slot_4 img.rune_base{
  395. transform: rotate(180deg);
  396. }
  397. div.rune_panel.rune_slot_5 img.rune_base{
  398. transform: rotate(237deg);
  399. }
  400. div.rune_panel.rune_slot_6 img.rune_base{
  401. transform: rotate(303deg);
  402. }
  403. div.rune_panel img.rune_icon{
  404. position: absolute;
  405. height: 3em;
  406. }
  407. div.rune_panel.rune_slot_1 img.rune_icon{
  408. top: 3.4em;
  409. left: 3.1em;
  410. }
  411. div.rune_panel.rune_slot_2 img.rune_icon{
  412. top: 2.9em;
  413. left: 2.5em;
  414. }
  415. div.rune_panel.rune_slot_3 img.rune_icon{
  416. top: 2.2em;
  417. left: 2.5em;
  418. }
  419. div.rune_panel.rune_slot_4 img.rune_icon{
  420. top: 2em;
  421. left: 3.1em;
  422. }
  423. div.rune_panel.rune_slot_5 img.rune_icon{
  424. top: 2.2em;
  425. left: 3.5em;
  426. }
  427. div.rune_panel.rune_slot_6 img.rune_icon{
  428. top: 2.9em;
  429. left: 3.5em;
  430. }
  431. div.rune_panel.rune_original_quality_0 img.rune_icon{
  432. filter: sepia(100%) saturate(500%) grayscale(100%);
  433. }
  434. div.rune_panel.rune_original_quality_1 img.rune_icon{
  435. filter: sepia(100%) saturate(500%) hue-rotate(60deg);
  436. }
  437. div.rune_panel.rune_original_quality_2 img.rune_icon{
  438. filter: sepia(100%) saturate(500%) hue-rotate(120deg);
  439. }
  440. div.rune_panel.rune_original_quality_3 img.rune_icon{
  441. filter: sepia(100%) saturate(500%) hue-rotate(230deg);
  442. }
  443. div.rune_panel.rune_original_quality_4 img.rune_icon{
  444. filter: sepia(100%) saturate(500%) hue-rotate(330deg);
  445. }
  446. div.rune_panel span.rune_stars{
  447. position: absolute;
  448. width: 9em;
  449. left: 0.9em;
  450. top: 0.2em;
  451. text-align: left;
  452. }
  453. div.rune_panel span.rune_stars img.star{
  454. width: 1.2em;
  455. height: 1.2em;
  456. margin-left: -0.4em;
  457. filter: drop-shadow(0 0 0.1em #000000) drop-shadow(0 0 0.1em #000000);
  458. }
  459. div.rune_panel.rune_level_15 span.rune_stars img.star{
  460. filter: sepia(100%) saturate(300%) hue-rotate(320deg) saturate(400%) drop-shadow(0 0 0.1em #000000) drop-shadow(0 0 0.1em #000000);
  461. }
  462. div.rune_panel span.rune_level{
  463. font-size: 130%;
  464. font-weight: bold;
  465. color: #ffffff;
  466. 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;
  467. position: relative;
  468. top: 4.7em;
  469. left: 1.5em;
  470. }
  471. div.rune_panel span.rune_level::before {
  472. content: "+";
  473. }
  474. div.rune_panel.rune_level_15 span.rune_level{
  475. color: #ff6f2d;
  476. }
  477. /**
  478. * /Rune boxes
  479. */
  480. /**
  481. * Monster panel
  482. */
  483. div.monster_panel{
  484. display: inline-block;
  485. width: 7em;
  486. height: 7em;
  487. margin: 0.5em;
  488. position: relative;
  489. border-radius: 15%;
  490. }
  491. @media screen and (max-width : 990px){
  492. div.monster_panel{
  493. height: 6em;
  494. width: 6em;
  495. margin: 0.2em;
  496. }
  497. }
  498. div.monster_panel span.stars{
  499. position: absolute;
  500. top: 0.4em;
  501. right: 0.5em;
  502. }
  503. @media screen and (max-width : 990px){
  504. div.monster_panel span.stars{
  505. top: 0.3em;
  506. right: 0.4em;
  507. }
  508. }
  509. div.monster_panel span.stars img.star{
  510. width: 1em;
  511. height: 1em;
  512. margin-left: -0.4em;
  513. }
  514. @media screen and (max-width : 990px){
  515. div.monster_panel span.stars img.star{
  516. width: 0.9em;
  517. height: 0.9em;
  518. margin-left: -0.5em;
  519. }
  520. }
  521. div.monster_panel img.monster{
  522. width: 6.5em;
  523. height: 6.5em;
  524. border-style: solid;
  525. border-width: 0.3em;
  526. border-radius: 15%;
  527. }
  528. @media screen and (max-width : 990px){
  529. div.monster_panel img.monster{
  530. width: 5.6em;
  531. height: 5.6em;
  532. border-width: 0.2em;
  533. border-radius: 10%;
  534. }
  535. }
  536. div.monster_panel span.level{
  537. position: relative;
  538. bottom: 1.6em;
  539. font-weight: bold;
  540. color: #000;
  541. text-shadow: 0 0 0.1em #fff, 0 0 0.1em #fff, 0 0 0.2em #fff, 0 0 0.2em #fff;
  542. font-size: 100%;
  543. right: -1.5em;
  544. bottom: 1.5em;
  545. z-index: 1;
  546. }
  547. div.monster_panel span.level::before {
  548. content: "Lv. ";
  549. }
  550. /**
  551. * /Monster panel
  552. */
  553. /**
  554. * Rune table
  555. */
  556. table.rune{
  557. border-collapse: collapse;
  558. display: inline-block;
  559. vertical-align: top;
  560. font-size: 80%;
  561. position: relative;
  562. border-radius: 1em;
  563. margin: 0.5em;
  564. }
  565. table.rune{
  566. font-size: 70%;
  567. }
  568. table.rune td.icon div.assigned{
  569. max-width: 2.5em;
  570. max-height: 2.5em;
  571. position: absolute;
  572. left: 0.5em;
  573. bottom: 1em;
  574. }
  575. table.rune td.icon div.assigned img.monster_image{
  576. width: 2.5em;
  577. height: 2.5em;
  578. border-style: solid;
  579. border-width: 0.2em;
  580. border-radius: 15%;
  581. }
  582. table.rune td.icon{
  583. border-bottom: 0.2em solid #777777;
  584. border-left: 0.2em solid #777777;
  585. border-top: 0.2em solid #777777;
  586. background-color: #655c59;
  587. }
  588. table.rune td.icon div.rune_panel{
  589. font-size: 70%;
  590. }
  591. table.rune td.stats{
  592. color: #ffffff;
  593. border-bottom: 0.2em solid #777777;
  594. border-top: 0.2em solid #777777;
  595. background-color: #655c59;
  596. width: 8em;
  597. }
  598. table.rune td.stats table{
  599. color: #ffffff;
  600. font-size: 90%;
  601. }
  602. table.rune td.stats table tr.main_stat{
  603. font-weight: bold;
  604. font-size: 110%;
  605. }
  606. table.rune td.stats table tr.innate_stat{
  607. font-style: italic;
  608. }
  609. table.rune td.stats table td.stat{
  610. text-align: right;
  611. }
  612. table.rune td.stats table td.value{
  613. text-align: left;
  614. padding-left: 1em;
  615. }
  616. table.rune td.stats table td.craft{
  617. color: #ff7700;
  618. }
  619. table.rune td.details{
  620. color: #ffffff;
  621. padding-left: 0.5em;
  622. border-bottom: 0.2em solid #777777;
  623. border-right: 0.2em solid #777777;
  624. border-top: 0.2em solid #777777;
  625. background-color: #655c59;
  626. width: 16em;
  627. }
  628. table.rune td.details table.table_details{
  629. font-size: 80%;
  630. }
  631. table.rune td.details table.table_details td.title{
  632. text-align: right;
  633. }
  634. table.rune td.details table.table_details td.value{
  635. text-align: left;
  636. padding-left: 1em;
  637. }
  638. table.rune td.details table.table_details span.quality{
  639. border: 0.1em solid #000000;
  640. border-radius: 0.2em;
  641. font-weight: bold;
  642. color: #ffffff;
  643. text-shadow: 0 0 0.1em #000000;
  644. padding: 0 0.3em;
  645. width: 5em;
  646. }
  647. table.rune td.details table.table_details span.quality.quality_normal{
  648. background-color: #cccccc;
  649. }
  650. table.rune td.details table.table_details span.quality.quality_magic{
  651. background-color: #55ff55;
  652. }
  653. table.rune td.details table.table_details span.quality.quality_rare{
  654. background-color: #15c6e1;
  655. }
  656. table.rune td.details table.table_details span.quality.quality_hero{
  657. background-color: #ad7fa8;
  658. }
  659. table.rune td.details table.table_details span.quality.quality_legend{
  660. background-color: #f57900;
  661. }
  662. /**
  663. * /Rune table
  664. */