ui.css 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721
  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. html {
  90. height: 100%;
  91. }
  92. body{
  93. height: 100%;
  94. padding: 0;
  95. margin: 0;
  96. background-color: #000000;
  97. }
  98. a{
  99. color: #08fff6;
  100. text-shadow: 0 0 0.5em #000000;
  101. text-decoration: none;
  102. transition: all .3s ease-in-out;
  103. }
  104. a:hover{
  105. color: #cccccc;
  106. text-shadow: 0 0 0.1em #000000;
  107. }
  108. .fake_a{ /* Elements that look and act as links. */
  109. color: #08fff6;
  110. text-shadow: 0 0 0.5em #000000;
  111. text-decoration: none;
  112. cursor: pointer;
  113. transition: all .3s ease-in-out;
  114. }
  115. .fake_a:hover{
  116. color: #cccccc;
  117. text-shadow: 0 0 0.1em #000000;
  118. }
  119. img.slider{
  120. width: 1em;
  121. height: 1em;
  122. vertical-align: middle;
  123. transition: all .3s ease-in-out;
  124. }
  125. img.loader{
  126. animation: spin 2s linear infinite;
  127. }
  128. @keyframes spin {
  129. 0% { transform: rotate(0deg); }
  130. 100% { transform: rotate(360deg); }
  131. }
  132. div#cover{ /* Page cofer for opening floating windows. */
  133. display: none;
  134. background-color: #000000;
  135. opacity: 0;
  136. transition: opacity .3s ease-in-out;
  137. position: fixed;
  138. top: 0;
  139. left: 0;
  140. right: 0;
  141. bottom: 0;
  142. z-index: 10;
  143. }
  144. header{
  145. border-bottom: 0.3em solid #f2c920;
  146. border-left: 0.3em solid #f2c920;
  147. border-right: 0.3em solid #f2c920;
  148. border-bottom-right-radius: 2em;
  149. border-bottom-left-radius: 2em;
  150. box-shadow: 0 0 1em #ffffff;
  151. margin: 0 0 2em 0;
  152. background-color: #884444;
  153. }
  154. header div#logo{
  155. margin: auto;
  156. display: inline-block;
  157. vertical-align: middle;
  158. width: 20em;
  159. text-align: center;
  160. }
  161. header div#logo h1#logo_text{
  162. font-style: italic;
  163. margin: -2em auto -0.7em auto;
  164. color: #ffffff;
  165. 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;
  166. }
  167. header div#logo h1#logo_text span.large{
  168. font-size: 150%;
  169. }
  170. header div#logo h1#logo_text span.small{
  171. font-size: 70%;
  172. margin-left: -0.5em;
  173. }
  174. header nav{
  175. display: inline-block;
  176. vertical-align: middle;
  177. }
  178. header nav a{
  179. font-size: 2em;
  180. font-weight: bold;
  181. margin: 0.5em;
  182. color: #ffffff;
  183. text-decoration: none;
  184. position: relative;
  185. transition: all .4s ease-in-out;
  186. }
  187. header nav a:hover{
  188. color: #333333;
  189. text-shadow: 0 0 0.7em #ffffff;
  190. }
  191. footer{
  192. color: #ffffff;
  193. font-size: 80%;
  194. text-align: center;
  195. border-top: 0.3em solid #f2c920;
  196. border-left: 0.3em solid #f2c920;
  197. border-right: 0.3em solid #f2c920;
  198. border-top-right-radius: 2em;
  199. border-top-left-radius: 2em;
  200. box-shadow: 0 0 1em #ffffff;
  201. margin: 2em 0 0 0;
  202. background-color: #884444;
  203. padding: 1em 2em 1em 2em;
  204. }
  205. footer table#footer_table{
  206. margin-left: auto;
  207. margin-right: auto;
  208. width: 95%;
  209. table-layout: fixed;
  210. }
  211. footer table#footer_table td{
  212. width: 33%;
  213. padding: 0.5em;
  214. }
  215. @media screen and (max-width : 990px){
  216. footer table#footer_table td{
  217. width: auto;
  218. padding: 0.2em;
  219. font-size: 70%;
  220. }
  221. }
  222. div#content{ /* Everything between the header and the footer. */
  223. width: 90%;
  224. margin: auto;
  225. max-width: 90em;
  226. }
  227. div.section{
  228. margin: 0.5em;
  229. padding: 1em;
  230. background-color: #ccaa88;
  231. border: 0.1em solid #000000;
  232. overflow: hidden;
  233. }
  234. @media screen and (max-width : 990px){
  235. div.section{
  236. margin: 1em;
  237. }
  238. }
  239. div.section h3.section_title{
  240. font-weight: bold;
  241. color: #ffffff;
  242. background-color: #886644;
  243. font-size: 120%;
  244. padding: 0.2em 0.5em 0.2em 0.5em;
  245. margin: -1em -1em 1em -1em;
  246. }
  247. div.section div.entry{ /* Separated elements in a section. */
  248. border: 0.1em solid #333333;
  249. border-radius: 0.3em;
  250. padding: 0.5em;
  251. margin: 0.5em;
  252. transition: all .4s ease-in-out;
  253. }
  254. img.skill_image{
  255. margin: 0 auto;
  256. width: 2.5em;
  257. height: 2.5em;
  258. border: 0.2em solid #000000;
  259. border-radius: 15%;
  260. }
  261. img.skill_image.skill_awaken{
  262. border: 0.2em solid #aa00ff;
  263. }
  264. img.skill_image.skill_disabled{
  265. background-color: #ffffff;
  266. opacity: 0.7;
  267. }
  268. img.skill_image.skill_leader{
  269. filter: drop-shadow(0 0 0.1em #8888ff) drop-shadow(0 0 0.1em #8888ff) drop-shadow(0 0 0.1em #8888ff);
  270. }
  271. span.skill_name{
  272. display: block;
  273. font-style: italic;
  274. }
  275. span.skill_name.skill_awaken{
  276. color: #aa00ff;
  277. }
  278. span.skill_name.skill_disabled{
  279. opacity: 0.7;
  280. }
  281. span.skill_name.skill_leader{
  282. display: none;
  283. }
  284. span.skill_level{
  285. display: block;
  286. margin: 0.5em;
  287. font-size: 90%;
  288. }
  289. span.skill_level input{
  290. width: 2em;
  291. }
  292. span.skill_image{
  293. position: relative;
  294. }
  295. span.skill_image span.skill_tooltip{
  296. color: #ffffff;
  297. padding: 0.7em;
  298. background-color: #351e0b;
  299. border: 0.2em solid #f2c920;;
  300. border-radius: 0.5em;
  301. text-shadow: 0 0 0.1em #000000;
  302. box-shadow: 0 0 0.2em #000000;
  303. width: 18em;
  304. top: -7em;
  305. left: -9em;
  306. opacity: 0;
  307. position: absolute;
  308. text-align: center;
  309. display: none;
  310. /* z-index: 2; */
  311. text-transform: none;
  312. transition: all 0.3s ease-in-out;
  313. }
  314. @media screen and (max-width : 990px){
  315. span.skill_image span.skill_tooltip{
  316. width: 12em;
  317. top: -9em;
  318. left: -6em;
  319. padding: 0.4em
  320. }
  321. }
  322. span.skill_image:hover span.skill_tooltip{
  323. opacity: 1;
  324. display: block;
  325. z-index: 99;
  326. }
  327. span.skill_image span.skill_tooltip img.skill_tooltip_image{
  328. width: 2em;
  329. height: 2em;
  330. float: left;
  331. margin: 0.2em;
  332. border: 0.2em solid #000000;
  333. border-radius: 15%;
  334. }
  335. span.skill_image span.skill_tooltip img.skill_tooltip_image.skill_awaken{
  336. border: 0.2em solid #aa00ff;
  337. }
  338. span.skill_image span.skill_tooltip img.skill_tooltip_image.skill_disabled{
  339. background-color: #ffffff;
  340. opacity: 0.7;
  341. }
  342. span.skill_image span.skill_tooltip img.skill_tooltip_image.skill_leader{
  343. filter: drop-shadow(0 0 0.1em #8888ff) drop-shadow(0 0 0.1em #8888ff) drop-shadow(0 0 0.1em #8888ff);
  344. }
  345. span.skill_image span.skill_tooltip span.skill_tooltip_title{
  346. font-weight: bold;
  347. }
  348. span.skill_image span.skill_tooltip ul.skill_levels{
  349. display: block;
  350. text-align: left;
  351. margin: 0.5em auto 0.5em 0.5em;
  352. font-size: 90%;
  353. }
  354. span.skill_image span.skill_tooltip ul.skill_levels li.unreached{
  355. font-style: italic;
  356. color: #aaaaaa;
  357. }
  358. input[type=button], input[type=submit]{
  359. font-size: 115%;
  360. font-weight: bold;
  361. color: #ffffff;
  362. padding: 0.7em 1.3em 0.7em 1.3em;
  363. background-color: #351e0b;
  364. border: 0.2em solid #f2c920;;
  365. border-radius: 0.5em;
  366. text-shadow: 0 0 0.2em #000000;
  367. cursor: pointer;
  368. box-shadow: 0 0 0.3em #000000;
  369. }
  370. input[type=text], input[type=number]{
  371. font-weight: bold;
  372. color: #000000;
  373. padding: 0 0.3em;
  374. background-color: #f3eeea;
  375. border: 0.2em solid #f2c920;;
  376. border-radius: 0.5em;
  377. text-shadow: 0 0 0.1em #ffffff;
  378. box-shadow: 0 0 0.3em #000000;
  379. }
  380. input[type=checkbox]{
  381. height: 1.5em;
  382. width: 1.5em;
  383. font-weight: bold;
  384. color: #ffffff;
  385. padding: 0.7em 1.3em 0.7em 1.3em;
  386. background-color: #351e0b;
  387. border: 0.2em solid #f2c920;;
  388. border-radius: 0.5em;
  389. text-shadow: 0 0 0.2em #000000;
  390. cursor: pointer;
  391. box-shadow: 0 0 0.3em #000000;
  392. }
  393. select{
  394. font-size: 115%;
  395. font-weight: bold;
  396. color: #ffffff;
  397. padding: 0 0.3em;
  398. background-color: #351e0b;
  399. border: 0.2em solid #f2c920;;
  400. border-radius: 0.5em;
  401. text-shadow: 0 0 0.2em #000000;
  402. cursor: pointer;
  403. box-shadow: 0 0 0.3em #000000;
  404. }
  405. a.a_button{ /* Links that look like buttons. */
  406. font-size: 115%;
  407. font-weight: bold;
  408. color: #ffffff;
  409. padding: 0.7em 1.3em 0.7em 1.3em;
  410. background-color: #351e0b;
  411. border: 0.2em solid #f2c920;;
  412. border-radius: 0.5em;
  413. text-shadow: 0 0 0.2em #000000;
  414. cursor: pointer;
  415. box-shadow: 0 0 0.3em #000000;
  416. display: inline-block;
  417. }
  418. ::placeholder {
  419. color: #777777;
  420. }
  421. /* Runes */
  422. div.rune_circle{
  423. width: 300px;
  424. height: 300px;
  425. position: relative;
  426. }
  427. div.rune_circle img.rune_circle_slots{
  428. position: absolute;
  429. width: 219px;
  430. height: 249px;
  431. left: 40px;
  432. top: 25px;
  433. /* z-index: 1; */
  434. }
  435. div.rune_circle img.rune_base{
  436. position: absolute;
  437. width: 105px;
  438. height: 105px;
  439. /* z-index: 2; */
  440. }
  441. div.rune_circle img.rune_base.rune_base_1{
  442. transform: rotate(0deg);
  443. top: 29px;
  444. left: 96px;
  445. }
  446. div.rune_circle img.rune_base.rune_base_2{
  447. transform: rotate(60deg);
  448. top: 60px;
  449. left: 157px;
  450. }
  451. div.rune_circle img.rune_base.rune_base_3{
  452. transform: rotate(120deg);
  453. top: 130px;
  454. left: 157px;
  455. }
  456. div.rune_circle img.rune_base.rune_base_4{
  457. transform: rotate(180deg);
  458. top: 160px;
  459. left: 96px;
  460. }
  461. div.rune_circle img.rune_base.rune_base_5{
  462. transform: rotate(240deg);
  463. top: 130px;
  464. left: 35px;
  465. }
  466. div.rune_circle img.rune_base.rune_base_6{
  467. transform: rotate(300deg);
  468. top: 60px;
  469. left: 36px;
  470. }
  471. div.rune_circle img.rune_icon{
  472. position: absolute;
  473. width: 30px;
  474. height: 30px;
  475. /* z-index: 3; */
  476. }
  477. div.rune_circle img.rune_icon.rune_icon_1{
  478. top: 65px;
  479. left: 132px;
  480. }
  481. div.rune_circle img.rune_icon.rune_icon_2{
  482. top: 95px;
  483. left: 195px;
  484. }
  485. div.rune_circle img.rune_icon.rune_icon_3{
  486. top: 168px;
  487. left: 197px;
  488. }
  489. div.rune_circle img.rune_icon.rune_icon_4{
  490. top: 200px;
  491. left: 132px;
  492. }
  493. div.rune_circle img.rune_icon.rune_icon_5{
  494. top: 170px;
  495. left: 70px;
  496. }
  497. div.rune_circle img.rune_icon.rune_icon_6{
  498. top: 92px;
  499. left: 71px;
  500. }
  501. div.rune_circle img.rune_icon.rune_icon_Normal{
  502. filter: sepia(100%) saturate(500%) grayscale(100%);;
  503. }
  504. div.rune_circle img.rune_icon.rune_icon_Magic{
  505. filter: sepia(100%) saturate(500%) hue-rotate(60deg);
  506. }
  507. div.rune_circle img.rune_icon.rune_icon_Rare{
  508. filter: sepia(100%) saturate(500%) hue-rotate(120deg);
  509. }
  510. div.rune_circle img.rune_icon.rune_icon_Hero{
  511. filter: sepia(100%) saturate(500%) hue-rotate(250deg);
  512. }
  513. div.rune_circle img.rune_icon.rune_icon_Legendary{
  514. filter: sepia(100%) saturate(500%) hue-rotate(330deg);
  515. }
  516. div.rune_circle span.rune_level{
  517. text-align: left;
  518. color: #ffffff;
  519. font-weight: bold;
  520. font-size: 70%;
  521. position: absolute;
  522. width: 40px;
  523. height: 40px;
  524. /* z-index: 3; */
  525. }
  526. div.rune_circle span.rune_level.rune_level_1{
  527. transform: rotate(0deg);
  528. top: 105px;
  529. left: 137px;
  530. }
  531. div.rune_circle span.rune_level.rune_level_2{
  532. transform: rotate(60deg);
  533. top: 124px;
  534. left: 155px;
  535. }
  536. div.rune_circle span.rune_level.rune_level_3{
  537. transform: rotate(300deg);
  538. top: 145px;
  539. left: 180px;
  540. }
  541. div.rune_circle span.rune_level.rune_level_4{
  542. transform: rotate(0deg);
  543. top: 177px;
  544. left: 137px;
  545. }
  546. div.rune_circle span.rune_level.rune_level_5{
  547. transform: rotate(60deg);
  548. top: 162px;
  549. left: 87px;
  550. }
  551. div.rune_circle span.rune_level.rune_level_6{
  552. transform: rotate(300deg);
  553. top: 108px;
  554. left: 111px;
  555. }
  556. div.rune_circle span.rune_stars{
  557. text-align: left;
  558. position: absolute;
  559. width: 40px;
  560. height: 40px;
  561. /* z-index: 3; */
  562. color: #ffffff;
  563. font-weight: bold;
  564. font-size: 70%;
  565. }
  566. div.rune_circle span.rune_stars.rune_stars_1{
  567. transform: rotate(0deg);
  568. top: 94px;
  569. left: 140px;
  570. }
  571. div.rune_circle span.rune_stars.rune_stars_2{
  572. transform: rotate(60deg);
  573. top: 120px;
  574. left: 167px;
  575. }
  576. div.rune_circle span.rune_stars.rune_stars_3{
  577. transform: rotate(300deg);
  578. top: 147px;
  579. left: 193px;
  580. }
  581. div.rune_circle span.rune_stars.rune_stars_4{
  582. transform: rotate(0deg);
  583. top: 188px;
  584. left: 142px;
  585. }
  586. div.rune_circle span.rune_stars.rune_stars_5{
  587. transform: rotate(60deg);
  588. top: 172px;
  589. left: 80px;
  590. }
  591. div.rune_circle span.rune_stars.rune_stars_6{
  592. transform: rotate(300deg);
  593. top: 100px;
  594. left: 102px;
  595. }
  596. div.rune_circle span.rune_stars span.rune_stars_num{
  597. color: #ffffff;
  598. font-weight: bold;
  599. }
  600. div.rune_circle span.rune_stars img.rune_stars_star{
  601. width: 10px;
  602. height: 10px;
  603. margin-left: -5px;
  604. }
  605. div.rune_box{
  606. width: 10em;
  607. height: 10em;
  608. position:relative;
  609. border-radius: 1em;
  610. border: 0.2em solid #000000;
  611. }
  612. div.rune_box.rune_box_Normal{
  613. background-image: repeating-radial-gradient(#ffffff, #cccccc 30%, #ffffff 60%);
  614. }
  615. div.rune_box.rune_box_Magic{
  616. background-image: repeating-radial-gradient(#aaffaa, #88cc88 30%, #aaffaa 60%);
  617. }
  618. div.rune_box.rune_box_Rare{
  619. background-image: repeating-radial-gradient(#aaaaff, #8888cc 30%, #aaaaff 60%);
  620. }
  621. div.rune_box.rune_box_Hero{
  622. background-image: repeating-radial-gradient(#ffaacc, #cc88aa 30%, #ffaacc 60%);
  623. }
  624. div.rune_box.rune_box_Legendary{
  625. background-image: repeating-radial-gradient(#f48200, #b76201 30%, #f48200 60%);
  626. }
  627. div.rune_box img.rune_base{
  628. position: absolute;
  629. width: 10em;
  630. height: 10em;
  631. /* z-index: 1; */
  632. top: 0;
  633. left: 0;
  634. }
  635. div.rune_box img.rune_base.rune_base_1{
  636. transform: rotate(0deg);
  637. }
  638. div.rune_box img.rune_base.rune_base_2{
  639. transform: rotate(60deg);
  640. }
  641. div.rune_box img.rune_base.rune_base_3{
  642. transform: rotate(120deg);
  643. }
  644. div.rune_box img.rune_base.rune_base_4{
  645. transform: rotate(180deg);
  646. }
  647. div.rune_box img.rune_base.rune_base_5{
  648. transform: rotate(240deg);
  649. }
  650. div.rune_box img.rune_base.rune_base_6{
  651. transform: rotate(300deg);
  652. }
  653. div.rune_box img.rune_icon{
  654. position: absolute;
  655. width: 3em;
  656. height: 3em;
  657. /* z-index: 2; */
  658. top: 3.8em;
  659. left: 3.5em;
  660. }
  661. div.rune_box img.rune_icon.rune_icon_Normal{
  662. filter: sepia(100%) saturate(500%) grayscale(100%);;
  663. }
  664. div.rune_box img.rune_icon.rune_icon_Magic{
  665. filter: sepia(100%) saturate(500%) hue-rotate(60deg);
  666. }
  667. div.rune_box img.rune_icon.rune_icon_Rare{
  668. filter: sepia(100%) saturate(500%) hue-rotate(120deg);
  669. }
  670. div.rune_box img.rune_icon.rune_icon_Hero{
  671. filter: sepia(100%) saturate(500%) hue-rotate(250deg);
  672. }
  673. div.rune_box img.rune_icon.rune_icon_Legendary{
  674. filter: sepia(100%) saturate(500%) hue-rotate(330deg);
  675. }
  676. div.rune_box span.rune_level{
  677. position: absolute;
  678. font-size: 110%;
  679. bottom: 0.2em;
  680. left: 0.2em;
  681. color: #ffffff;
  682. font-weight: bold;
  683. text-shadow: 0 0 0.1em #000000;
  684. }
  685. div.rune_box span.rune_stars{
  686. position: absolute;
  687. width: 9em;
  688. left: 0.5em;
  689. top: 0.2em;
  690. text-align: right;
  691. }
  692. div.rune_box span.rune_stars img.rune_star{
  693. /* z-index: 4; */
  694. width: 1.5em;
  695. height: 1.5em;
  696. margin-left: -0.6em;
  697. filter: drop-shadow(0 0 0.1em #000000) drop-shadow(0 0 0.1em #000000) drop-shadow(0 0 0.1em #000000);
  698. }