ui.css 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390
  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. vertial-align: middle;
  123. transition: all .3s ease-in-out;
  124. }
  125. div#cover{ /* Page cofer for opening floating windows. */
  126. display: none;
  127. background-color: #000000bb;
  128. opacity: 0;
  129. transition: opacity .3s ease-in-out;
  130. position: fixed;
  131. top: 0;
  132. left: 0;
  133. right: 0;
  134. bottom: 0;
  135. }
  136. div#header{
  137. border-bottom: 0.3em solid #f2c920;
  138. border-left: 0.3em solid #f2c920;
  139. border-right: 0.3em solid #f2c920;
  140. border-bottom-right-radius: 2em;
  141. border-bottom-left-radius: 2em;
  142. box-shadow: 0 0 1em #ffffff;
  143. margin: 0 0 2em 0;
  144. background-color: #884444;
  145. }
  146. div#header div#logo{
  147. margin: auto;
  148. display: inline-block;
  149. vertical-align: middle;
  150. width: 20em;
  151. text-align: center;
  152. }
  153. div#header div#logo h1#logo_text{
  154. font-style: italic;
  155. margin: -2em auto -0.7em auto;
  156. color: #ffffff;
  157. 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;
  158. }
  159. div#header div#logo h1#logo_text span.large{
  160. font-size: 150%;
  161. }
  162. div#header div#logo h1#logo_text span.small{
  163. font-size: 70%;
  164. margin-left: -0.5em;
  165. }
  166. div#header nav{
  167. display: inline-block;
  168. vertical-align: middle;
  169. }
  170. div#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. div#header nav a:hover{
  180. color: #333333;
  181. text-shadow: 0 0 0.7em #ffffff;
  182. }
  183. div#footer{
  184. color: #ffffff;
  185. font-size: 110%;
  186. text-align: center;
  187. border-top: 0.3em solid #f2c920;
  188. border-left: 0.3em solid #f2c920;
  189. border-right: 0.3em solid #f2c920;
  190. border-top-right-radius: 2em;
  191. border-top-left-radius: 2em;
  192. box-shadow: 0 0 1em #ffffff;
  193. margin: 2em 0 0 0;
  194. background-color: #884444;
  195. padding: 1em 2em 3em 2em;
  196. }
  197. div#footer table#footer_table{
  198. margin-left: auto;
  199. margin-right: auto;
  200. width: 95%;
  201. table-layout: fixed;
  202. }
  203. div#footer table#footer_table td{
  204. width: 33%;
  205. padding: 0.5em;
  206. }
  207. @media screen and (max-width : 990px){
  208. div#footer table#footer_table td{
  209. width: auto;
  210. padding: 0.2em;
  211. font-size: 70%;
  212. }
  213. }
  214. div#content{ /* Everything between the header and the footer. */
  215. width: 90%;
  216. margin: auto;
  217. max-width: 90em;
  218. }
  219. div.section{
  220. margin: 0.5em;
  221. padding: 1em;
  222. background-color: #ccaa88;
  223. border: 0.1em solid #000000;
  224. overflow: hidden;
  225. }
  226. @media screen and (max-width : 990px){
  227. div.section{
  228. margin: 1em;
  229. }
  230. }
  231. div.section h3.section_title{
  232. font-weight: bold;
  233. color: #ffffff;
  234. background-color: #886644;
  235. font-size: 120%;
  236. padding: 0.2em 0.5em 0.2em 0.5em;
  237. margin: -1em -1em 1em -1em;
  238. }
  239. div.section div.entry{ /* Separated elements in a section. */
  240. border: 0.1em solid #333333;
  241. border-radius: 0.3em;
  242. padding: 0.5em;
  243. margin: 0.5em;
  244. transition: all .4s ease-in-out;
  245. }
  246. img.skill_image{
  247. display: block;
  248. margin: 0 auto;
  249. width: 2.5em;
  250. height: 2.5em;
  251. border: 0.2em solid #000000;
  252. border-radius: 15%;
  253. }
  254. img.skill_image.skill_awaken{
  255. border: 0.2em solid #aa00ff;
  256. }
  257. img.skill_image.skill_disabled{
  258. background-color: #ffffff;
  259. opacity: 0.7;
  260. }
  261. img.skill_image.skill_leader{
  262. filter: drop-shadow(0 0 0.1em #8888ff) drop-shadow(0 0 0.1em #8888ff) drop-shadow(0 0 0.1em #8888ff);
  263. }
  264. span.skill_name{
  265. font-style: italic;
  266. }
  267. span.skill_name.skill_awaken{
  268. color: #aa00ff;
  269. }
  270. span.skill_name.skill_disabled{
  271. opacity: 0.7;
  272. }
  273. span.skill_name.skill_leader{
  274. display: none;
  275. }
  276. span.skill_image{
  277. position: relative;
  278. margin-left: 10%;
  279. margin-top: 15%;
  280. }
  281. span.skill_image span.skill_tooltip{
  282. color: #ffffff;
  283. padding: 0.7em;
  284. background-color: #351e0b;
  285. border: 0.2em solid #f2c920;;
  286. border-radius: 0.5em;
  287. text-shadow: 0 0 0.1em #000000;
  288. cursor: pointer;
  289. box-shadow: 0 0 0.2em #000000;
  290. width: 18em;
  291. top: -7em;
  292. left: -9em;
  293. opacity: 0;
  294. position: absolute;
  295. text-align: center;
  296. z-index: 2;
  297. text-transform: none;
  298. transition: all 0.3s ease-in-out;
  299. }
  300. span.skill_image:hover span.skill_tooltip{
  301. opacity: 1;
  302. z-index: 99;
  303. }
  304. span.skill_image span.skill_tooltip img.skill_tooltip_image{
  305. width: 2em;
  306. height: 2em;
  307. float: left;
  308. margin: 0.2em;
  309. border: 0.2em solid #000000;
  310. border-radius: 15%;
  311. }
  312. span.skill_image span.skill_tooltip img.skill_tooltip_image.skill_awaken{
  313. border: 0.2em solid #aa00ff;
  314. }
  315. span.skill_image span.skill_tooltip img.skill_tooltip_image.skill_disabled{
  316. background-color: #ffffff;
  317. opacity: 0.7;
  318. }
  319. span.skill_image span.skill_tooltip img.skill_tooltip_image.skill_leader{
  320. filter: drop-shadow(0 0 0.1em #8888ff) drop-shadow(0 0 0.1em #8888ff) drop-shadow(0 0 0.1em #8888ff);
  321. }
  322. span.skill_image span.skill_tooltip span.skill_tooltip_title{
  323. font-weight: bold;
  324. }
  325. input[type=button], input[type=submit]{
  326. font-size: 115%;
  327. font-weight: bold;
  328. color: #ffffff;
  329. padding: 0.7em 1.3em 0.7em 1.3em;
  330. background-color: #351e0b;
  331. border: 0.2em solid #f2c920;;
  332. border-radius: 0.5em;
  333. text-shadow: 0 0 0.2em #000000;
  334. cursor: pointer;
  335. box-shadow: 0 0 0.3em #000000;
  336. }
  337. input[type=text], input[type=number]{
  338. font-weight: bold;
  339. color: #000000;
  340. padding: 0 0.3em;
  341. background-color: #f3eeea;
  342. border: 0.2em solid #f2c920;;
  343. border-radius: 0.5em;
  344. text-shadow: 0 0 0.1em #ffffff;
  345. box-shadow: 0 0 0.3em #000000;
  346. }
  347. input[type=checkbox]{
  348. height: 1.5em;
  349. width: 1.5em;
  350. font-weight: bold;
  351. color: #ffffff;
  352. padding: 0.7em 1.3em 0.7em 1.3em;
  353. background-color: #351e0b;
  354. border: 0.2em solid #f2c920;;
  355. border-radius: 0.5em;
  356. text-shadow: 0 0 0.2em #000000;
  357. cursor: pointer;
  358. box-shadow: 0 0 0.3em #000000;
  359. }
  360. select{
  361. font-size: 115%;
  362. font-weight: bold;
  363. color: #ffffff;
  364. padding: 0 0.3em;
  365. background-color: #351e0b;
  366. border: 0.2em solid #f2c920;;
  367. border-radius: 0.5em;
  368. text-shadow: 0 0 0.2em #000000;
  369. cursor: pointer;
  370. box-shadow: 0 0 0.3em #000000;
  371. }
  372. a.a_button{ /* Links that look like buttons. */
  373. font-size: 115%;
  374. font-weight: bold;
  375. color: #ffffff;
  376. padding: 0.7em 1.3em 0.7em 1.3em;
  377. background-color: #351e0b;
  378. border: 0.2em solid #f2c920;;
  379. border-radius: 0.5em;
  380. text-shadow: 0 0 0.2em #000000;
  381. cursor: pointer;
  382. box-shadow: 0 0 0.3em #000000;
  383. display: inline-block;
  384. }
  385. ::placeholder {
  386. color: #777777;
  387. }