ui.css 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710
  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_0{ /* Normal */
  365. background-image: repeating-radial-gradient(#ffffff, #cccccc 30%, #ffffff 60%);
  366. }
  367. div.rune_panel.rune_quality_1{ /* Magic */
  368. background-image: repeating-radial-gradient(#aaffaa, #88cc88 30%, #aaffaa 60%);
  369. }
  370. div.rune_panel.rune_quality_2{ /* Rare */
  371. background-image: repeating-radial-gradient(#aaaaff, #8888cc 30%, #aaaaff 60%);
  372. }
  373. div.rune_panel.rune_quality_3{ /* Hero */
  374. background-image: repeating-radial-gradient(#ffaacc, #cc88aa 30%, #ffaacc 60%);
  375. }
  376. div.rune_panel.rune_quality_4{ /* 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_slot_1 img.rune_base{
  388. transform: rotate(0deg);
  389. }
  390. div.rune_panel.rune_slot_2 img.rune_base{
  391. transform: rotate(57deg);
  392. }
  393. div.rune_panel.rune_slot_3 img.rune_base{
  394. transform: rotate(123deg);
  395. }
  396. div.rune_panel.rune_slot_4 img.rune_base{
  397. transform: rotate(180deg);
  398. }
  399. div.rune_panel.rune_slot_5 img.rune_base{
  400. transform: rotate(237deg);
  401. }
  402. div.rune_panel.rune_slot_6 img.rune_base{
  403. transform: rotate(303deg);
  404. }
  405. div.rune_panel img.rune_icon{
  406. position: absolute;
  407. height: 3em;
  408. }
  409. div.rune_panel.rune_slot_1 img.rune_icon{
  410. top: 3.4em;
  411. left: 3.1em;
  412. }
  413. div.rune_panel.rune_slot_2 img.rune_icon{
  414. top: 2.9em;
  415. left: 2.5em;
  416. }
  417. div.rune_panel.rune_slot_3 img.rune_icon{
  418. top: 2.2em;
  419. left: 2.5em;
  420. }
  421. div.rune_panel.rune_slot_4 img.rune_icon{
  422. top: 2em;
  423. left: 3.1em;
  424. }
  425. div.rune_panel.rune_slot_5 img.rune_icon{
  426. top: 2.2em;
  427. left: 3.5em;
  428. }
  429. div.rune_panel.rune_slot_6 img.rune_icon{
  430. top: 2.9em;
  431. left: 3.5em;
  432. }
  433. div.rune_panel.rune_original_quality_0 img.rune_icon{
  434. filter: sepia(100%) saturate(500%) grayscale(100%);
  435. }
  436. div.rune_panel.rune_original_quality_1 img.rune_icon{
  437. filter: sepia(100%) saturate(500%) hue-rotate(60deg);
  438. }
  439. div.rune_panel.rune_original_quality_2 img.rune_icon{
  440. filter: sepia(100%) saturate(500%) hue-rotate(120deg);
  441. }
  442. div.rune_panel.rune_original_quality_3 img.rune_icon{
  443. filter: sepia(100%) saturate(500%) hue-rotate(230deg);
  444. }
  445. div.rune_panel.rune_original_quality_4 img.rune_icon{
  446. filter: sepia(100%) saturate(500%) hue-rotate(330deg);
  447. }
  448. div.rune_panel span.rune_stars{
  449. position: absolute;
  450. width: 9em;
  451. left: 0.9em;
  452. top: 0.2em;
  453. text-align: left;
  454. }
  455. div.rune_panel span.rune_stars img.star{
  456. width: 1.2em;
  457. height: 1.2em;
  458. margin-left: -0.4em;
  459. filter: drop-shadow(0 0 0.1em #000000) drop-shadow(0 0 0.1em #000000);
  460. }
  461. div.rune_panel.rune_level_15 span.rune_stars img.star{
  462. filter: sepia(100%) saturate(300%) hue-rotate(320deg) saturate(400%) drop-shadow(0 0 0.1em #000000) drop-shadow(0 0 0.1em #000000);
  463. }
  464. div.rune_panel span.rune_level{
  465. font-size: 130%;
  466. font-weight: bold;
  467. color: #ffffff;
  468. 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;
  469. position: relative;
  470. top: 4.7em;
  471. left: 1.5em;
  472. }
  473. div.rune_panel span.rune_level::before {
  474. content: "+";
  475. }
  476. div.rune_panel.rune_level_15 span.rune_level{
  477. color: #ff6f2d;
  478. }
  479. /**
  480. * /Rune boxes
  481. */
  482. /**
  483. * Monster panel
  484. */
  485. div.monster_panel{
  486. display: inline-block;
  487. width: 7em;
  488. height: 7em;
  489. margin: 0.5em;
  490. position: relative;
  491. border-radius: 15%;
  492. }
  493. @media screen and (max-width : 990px){
  494. div.monster_panel{
  495. height: 6em;
  496. width: 6em;
  497. margin: 0.2em;
  498. }
  499. }
  500. div.monster_panel span.stars{
  501. position: absolute;
  502. top: 0.4em;
  503. right: 0.5em;
  504. }
  505. @media screen and (max-width : 990px){
  506. div.monster_panel span.stars{
  507. top: 0.3em;
  508. right: 0.4em;
  509. }
  510. }
  511. div.monster_panel span.stars img.star{
  512. width: 1em;
  513. height: 1em;
  514. margin-left: -0.4em;
  515. }
  516. @media screen and (max-width : 990px){
  517. div.monster_panel span.stars img.star{
  518. width: 0.9em;
  519. height: 0.9em;
  520. margin-left: -0.5em;
  521. }
  522. }
  523. div.monster_panel img.monster{
  524. width: 6.5em;
  525. height: 6.5em;
  526. border-style: solid;
  527. border-width: 0.3em;
  528. border-radius: 15%;
  529. }
  530. @media screen and (max-width : 990px){
  531. div.monster_panel img.monster{
  532. width: 5.6em;
  533. height: 5.6em;
  534. border-width: 0.2em;
  535. border-radius: 10%;
  536. }
  537. }
  538. div.monster_panel span.level{
  539. position: relative;
  540. bottom: 1.6em;
  541. font-weight: bold;
  542. color: #000;
  543. text-shadow: 0 0 0.1em #fff, 0 0 0.1em #fff, 0 0 0.2em #fff, 0 0 0.2em #fff;
  544. font-size: 100%;
  545. right: -1.5em;
  546. bottom: 1.5em;
  547. z-index: 1;
  548. }
  549. div.monster_panel span.level::before {
  550. content: "Lv. ";
  551. }
  552. /**
  553. * /Monster panel
  554. */
  555. /**
  556. * Rune table
  557. */
  558. table.rune{
  559. border-collapse: collapse;
  560. display: inline-block;
  561. vertical-align: top;
  562. font-size: 80%;
  563. position: relative;
  564. border-radius: 1em;
  565. margin: 0.5em;
  566. }
  567. table.rune{
  568. font-size: 70%;
  569. }
  570. table.rune td.icon div.assigned{
  571. max-width: 2.5em;
  572. max-height: 2.5em;
  573. position: absolute;
  574. left: 0.5em;
  575. bottom: 1em;
  576. }
  577. table.rune td.icon div.assigned img.monster_image{
  578. width: 2.5em;
  579. height: 2.5em;
  580. border-style: solid;
  581. border-width: 0.2em;
  582. border-radius: 15%;
  583. }
  584. table.rune td.icon{
  585. border-bottom: 0.2em solid #777777;
  586. border-left: 0.2em solid #777777;
  587. border-top: 0.2em solid #777777;
  588. background-color: #655c59;
  589. }
  590. table.rune td.icon div.rune_panel{
  591. font-size: 70%;
  592. }
  593. table.rune td.stats{
  594. color: #ffffff;
  595. border-bottom: 0.2em solid #777777;
  596. border-top: 0.2em solid #777777;
  597. background-color: #655c59;
  598. width: 8em;
  599. }
  600. table.rune td.stats table{
  601. color: #ffffff;
  602. font-size: 90%;
  603. }
  604. table.rune td.stats table tr.main_stat{
  605. font-weight: bold;
  606. font-size: 110%;
  607. }
  608. table.rune td.stats table tr.innate_stat{
  609. font-style: italic;
  610. }
  611. table.rune td.stats table td.stat{
  612. text-align: right;
  613. }
  614. table.rune td.stats table td.value{
  615. text-align: left;
  616. padding-left: 1em;
  617. }
  618. table.rune td.stats table td.craft{
  619. color: #ff7700;
  620. }
  621. table.rune td.details{
  622. color: #ffffff;
  623. padding-left: 0.5em;
  624. border-bottom: 0.2em solid #777777;
  625. border-right: 0.2em solid #777777;
  626. border-top: 0.2em solid #777777;
  627. background-color: #655c59;
  628. width: 16em;
  629. }
  630. table.rune td.details table.table_details{
  631. font-size: 80%;
  632. }
  633. table.rune td.details table.table_details td.title{
  634. text-align: right;
  635. }
  636. table.rune td.details table.table_details td.value{
  637. text-align: left;
  638. padding-left: 1em;
  639. }
  640. table.rune td.details table.table_details span.quality{
  641. border: 0.1em solid #000000;
  642. border-radius: 0.2em;
  643. font-weight: bold;
  644. color: #ffffff;
  645. text-shadow: 0 0 0.1em #000000;
  646. padding: 0 0.3em;
  647. width: 5em;
  648. }
  649. table.rune td.details table.table_details span.quality.quality_normal{
  650. background-color: #cccccc;
  651. }
  652. table.rune td.details table.table_details span.quality.quality_magic{
  653. background-color: #55ff55;
  654. }
  655. table.rune td.details table.table_details span.quality.quality_rare{
  656. background-color: #15c6e1;
  657. }
  658. table.rune td.details table.table_details span.quality.quality_hero{
  659. background-color: #ad7fa8;
  660. }
  661. table.rune td.details table.table_details span.quality.quality_legend{
  662. background-color: #f57900;
  663. }
  664. /**
  665. * /Rune table
  666. */