home.css 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  1. article#profile{
  2. text-align: center;
  3. }
  4. div.panel{
  5. width: 49%;
  6. margin: 0;
  7. padding: 0;
  8. display: inline-block;
  9. vertical-align: top;
  10. }
  11. @media screen and (max-width : 990px){
  12. div.panel{
  13. width: 100%;
  14. display: block;
  15. }
  16. }
  17. article#profile div.profile_section{
  18. border: 0.2em solid var(--ui-color-border);
  19. /* max-width: 45%; */
  20. margin: 0.5em;
  21. padding: 0 0.5em 0.5em 0.5em;
  22. border-radius: 0.5em;
  23. display: block;
  24. vertical-align: top;
  25. text-align: center;
  26. background-color: #00000033;
  27. }
  28. @media screen and (max-width : 990px){
  29. article#profile div.profile_section{
  30. display: block;
  31. margin: 0.5em auto;
  32. max-width: 95%;
  33. width: 95%;
  34. }
  35. }
  36. article#profile div.profile_section h4{
  37. margin: 0 -0.5em 0.5em -0.5em;
  38. border-top-left-radius: 0.5em;
  39. border-top-right-radius: 0.5em;
  40. padding: 0.2em;
  41. border-bottom: 0.1em solid var(--ui-color-border);
  42. background-color: #00000033;
  43. }
  44. article#profile div#player table{
  45. border-collapse: collapse;
  46. margin: 0 auto;
  47. }
  48. article#profile div#player table td{
  49. border-top: 0.1em solid #00000077;
  50. border-bottom: 0.1em solid #00000077;
  51. }
  52. article#profile div#player table td.label{
  53. text-align: left;
  54. padding-right: 1.5em;
  55. }
  56. article#profile div#player table td.value{
  57. text-align: right;
  58. }
  59. article#profile div#placements h5{
  60. font-weight: bold;
  61. margin-top: 0.5em;
  62. margin-bottom: 0.3em;
  63. }
  64. article#profile div#placements div#placements_rep div.monster_panel{
  65. font-size: 45%;
  66. margin: 0.2em;
  67. }
  68. article#profile div#placements div#placements_arena div.monster_panel{
  69. font-size: 35%;
  70. margin: 0.15em;
  71. }
  72. article#profile div#placements div#placements_gw div.monster_panel{
  73. font-size: 40%;
  74. margin: 0.2em;
  75. }
  76. article#profile div#placements div#placements_gw hr{
  77. width: 12em;
  78. margin: 0.1em auto;
  79. }
  80. article#profile div#building div.building_panel{
  81. display: inline-block;
  82. width: 2em;
  83. height: 2em;
  84. margin: 0.2em 0em;
  85. position: relative;
  86. border-radius: 15%;
  87. vertical-align: middle;
  88. }
  89. article#profile div#building div.building_panel img.building, img.decoration{
  90. width: 2em;
  91. height: 2em;
  92. border-style: solid;
  93. border-width: 0.1em;
  94. border-radius: 15%;
  95. }
  96. article#profile div#building div.building_panel{
  97. display: inline-block;
  98. width: 2em;
  99. height: 2em;
  100. margin: 0.2em 0em;
  101. position: relative;
  102. border-radius: 15%;
  103. vertical-align: middle;
  104. }
  105. article#profile div#building div.building_panel img.building, img.decoration{
  106. width: 2em;
  107. height: 2em;
  108. border-style: solid;
  109. border-width: 0.1em;
  110. border-radius: 15%;
  111. }
  112. article#profile div#building div.building_panel span.level{
  113. position: relative;
  114. bottom: 1.6em;
  115. font-weight: bold;
  116. color: #000;
  117. text-shadow: 0 0 0.1em #fff, 0 0 0.2em #fff, 0 0 0.4em #fff, 0 0 0.4em #fff;
  118. bottom: 1.4em;
  119. z-index: 1;
  120. font-size: 1em;
  121. display: block;
  122. text-align: right;
  123. pointer-events: none;
  124. }
  125. article#profile div.inventory div.item_panel{
  126. display: inline-block;
  127. width: 2em;
  128. height: 2em;
  129. margin: 0.2em 0em;
  130. position: relative;
  131. border-radius: 15%;
  132. vertical-align: middle;
  133. }
  134. article#profile div.inventory div.item_panel img.item{
  135. width: 2em;
  136. height: 2em;
  137. border-style: solid;
  138. border-width: 0.1em;
  139. border-radius: 15%;
  140. }
  141. article#profile div.inventory div.item_panel span.amount{
  142. position: relative;
  143. font-weight: bold;
  144. color: #000;
  145. text-shadow: 0 0 0.1em #fff, 0 0 0.2em #fff, 0 0 0.4em #fff, 0 0 0.4em #fff;
  146. font-size: 0.8em;
  147. bottom: 1.6em;
  148. z-index: 1;
  149. display: block;
  150. text-align: right;
  151. pointer-events: none;
  152. }
  153. article#profile div#inventory ul{
  154. column-count: 2;
  155. text-align: left;
  156. margin: 0.5em auto;
  157. }
  158. article#profile div#inventory ul li img{
  159. height: 1.2em;
  160. width: 1.2em;
  161. vertical-align: middle;
  162. }
  163. article#profile div#records div.record table#rank_records{
  164. border-collapse: collapse;
  165. margin: 0 auto;
  166. }
  167. article#profile div#records div.record table#rank_records td{
  168. border-top: 0.1em solid #00000077;
  169. border-bottom: 0.1em solid #00000077;
  170. }
  171. article#profile div#records div.record table#rank_records td.label{
  172. text-align: left;
  173. padding-right: 1.5em;
  174. }
  175. article#profile div#records div.record table#rank_records td.value{
  176. text-align: center;
  177. }
  178. article#profile div#records div.record table#rank_records td.value.rank img{
  179. width: 1.5em;
  180. height: 1.5em;
  181. }
  182. article#profile div#records div.record table#rank_records td.value.wboss{
  183. font-size: 110%;
  184. color: #ff6633;
  185. text-shadow: 0 0 0.1em #000, 0 0 0.1em #000, 0 0 0.1em #000, 0 0 0.1em #000, 0 0 0.1em #000, 0 0 0.2em #ff0, 0 0 0.2em #ff0, 0 0 0.2em #ff0, 0 0 0.2em #ff0;
  186. font-style: italic;
  187. }
  188. article#profile div#records div.record table#rank_records td.value.toa{
  189. font-size: 110%;
  190. font-weight: bold;
  191. }
  192. article#profile div#records div.record table#battle_records{
  193. border-collapse: collapse;
  194. margin: 0 auto;
  195. }
  196. article#profile div#records div.record table#battle_records td{
  197. border-top: 0.1em solid #00000077;
  198. border-bottom: 0.1em solid #00000077;
  199. }
  200. article#profile div#records div.record table#battle_records td.record_dungeon img{
  201. width: 2em;
  202. height: 2em;
  203. border: 0.2em solid #555555;
  204. border-radius: 0.5em;
  205. background-color: #777777;
  206. }
  207. article#profile div#records div.record table#battle_records td.record_party{
  208. font-size: 30%;
  209. width: 45em;
  210. }
  211. article#profile div#records div.record table#battle_records td.record_party.frontlines{
  212. font-size: 25%;
  213. }
  214. article#profile div#records div.record table#battle_records td.record_party hr{
  215. width: 33em;
  216. }
  217. article#profile div#records div.record table#battle_records td.record_info{
  218. text-align: left;
  219. }
  220. article#profile div#records div.record table#battle_records td.record_info span.title{
  221. font-weight: bold;
  222. font-size: 75%;
  223. }
  224. article#profile div#records div.record table#battle_records td.record_info span.title{
  225. font-weight: bold;
  226. font-size: 110%;
  227. display: block;
  228. margin: 0.1em;
  229. }
  230. article#profile div#records div.record table#battle_records td.record_info span.time{
  231. font-size: 90%;
  232. font-style: italic;
  233. }
  234. article#profile div#records div.record table#battle_records td.record_info span.time span.ms{
  235. font-size: 70%;
  236. }
  237. article#profile div#records div.record table#battle_records td.record_info span.rank{
  238. display: inline-block;
  239. vertical-align: bottom;
  240. font-size: 100%;
  241. color: #ff6633;
  242. text-shadow: 0 0 0.1em #000, 0 0 0.1em #000, 0 0 0.1em #000, 0 0 0.1em #000, 0 0 0.1em #000, 0 0 0.2em #ff0, 0 0 0.2em #ff0, 0 0 0.2em #ff0, 0 0 0.2em #ff0;
  243. font-style: italic;
  244. }
  245. article#profile div#records div.record table#battle_records td.record_info span.score{
  246. font-size: 90%;
  247. font-style: italic;
  248. }