report_skillup.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. section.filters table{
  2. text-align: left;
  3. }
  4. section.filters table td{
  5. text-align: left !important;
  6. }
  7. section.content{
  8. display: block;
  9. text-align: left;
  10. }
  11. section.content div.monster div.profile{
  12. text-align: center;
  13. display: inline-block;
  14. vertical-align: top;
  15. font-size: 65%;
  16. margin-bottom: -2em;
  17. }
  18. @media screen and (max-width : 990px){
  19. section.content div.monster div.profile{
  20. text-align: center;
  21. width: 30%;
  22. }
  23. }
  24. section.content div.monster div.skills{
  25. text-align: left;
  26. display: inline-block;
  27. }
  28. section.content div.monster div.skills div.skill{
  29. display: inline-block;
  30. vertical-align: top;
  31. width: 5em;
  32. margin: 0.5em;
  33. color: #ffffff;
  34. text-align: center;
  35. position: relative;
  36. }
  37. @media screen and (max-width : 990px){
  38. section.content div.monster div.skills div.skill{
  39. font-size: 80%;
  40. }
  41. }
  42. section.content div.monster div.skills div.skill img{
  43. width: 3em;
  44. height: 3em;
  45. border: 0.1em solid var(--ui-color-border);
  46. border-radius: 0.5em;
  47. margin: auto;
  48. display: block;
  49. }
  50. section.content div.monster div.skills div.skill span.skill_level{
  51. position: relative;
  52. display: block;
  53. top: -1.3em;
  54. width: 2.8em;
  55. text-align: right;
  56. text-shadow: 0 0 0.2em #000000, 0 0 0.2em #000000, 0 0 0.4em #000000, 0 0 0.4em #000000, 0 0 0.6em #000000, 0 0 0.6em #000000, 0 0 0.8em #000000, 0 0 0.8em #000000;
  57. pointer-events: none;
  58. margin: auto;
  59. }
  60. section.content div.monster div.skills div.skill span.skill_level.maxed{
  61. color: #f2c920;
  62. }
  63. section.content div.monster div.skills div.skill span.skill_name{
  64. text-shadow: 0 0 0.2em #000000, 0 0 0.2em #000000, 0 0 0.4em #000000;
  65. top: 3.2em;
  66. display: block;
  67. margin-top: -1.3em;
  68. font-size: 80%;
  69. line-height: 0.9em;
  70. }
  71. section.content div.monster table#skill_averages{
  72. margin: auto auto auto 2em;
  73. color: #ffffff;
  74. display: inline-block;
  75. vertical-align: top;
  76. max-width: 30%;
  77. }
  78. @media screen and (max-width : 990px){
  79. section.content div.monster table#skill_averages{
  80. display: block;
  81. margin: 0 auto auto auto;
  82. font-size: 80%;
  83. max-width: 90%;
  84. text-align: left;
  85. border-collapse: collapse;
  86. }
  87. }
  88. section.content div.monster table#skill_averages td.title{
  89. text-align: right;
  90. }
  91. section.content div.monstertable#skill_averages td.value{
  92. text-align: left;
  93. padding-left: 1em;
  94. }