You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

132 lines
1.9 KiB

  1. @import "../../../css/colors.less";
  2. @pad: 8px;
  3. .uiTarget {
  4. position: absolute;
  5. left: 406px;
  6. top: 10px;
  7. width: calc(200px + (@pad * 2));
  8. padding: @pad;
  9. background-color: fade(#3a3b4a, 90%);
  10. display: none;
  11. .boxes {
  12. width: 100%;
  13. float: left;
  14. height: 100%;
  15. .infoBox {
  16. color: @white;
  17. width: 100%;
  18. height: 18px;
  19. margin-bottom: 5px;
  20. position: relative;
  21. > * {
  22. float: left;
  23. }
  24. .infoName {
  25. width: 70%;
  26. overflow: hidden;
  27. text-overflow: ellipsis;
  28. white-space: nowrap;
  29. }
  30. .infoLevel {
  31. width: 30%;
  32. text-align: right;
  33. &.high-level {
  34. text-shadow:
  35. 2px 0 @red,
  36. -2px 0 @red,
  37. 0 -2px @red,
  38. 0 2px @red,
  39. -2px -2px @red,
  40. -2px 2px @red,
  41. 2px -2px @red,
  42. 2px 2px @red;
  43. }
  44. }
  45. }
  46. .statBox {
  47. width: 100%;
  48. height: 18px;
  49. margin-bottom: 5px;
  50. position: relative;
  51. &:nth-child(3) {
  52. margin-bottom: 0px;
  53. }
  54. &:last-child {
  55. display: none;
  56. position: absolute;
  57. margin-left: -8px;
  58. margin-top: 13px;
  59. background-color: @grayD;
  60. }
  61. [class^="stat"] {
  62. position: absolute;
  63. left: 0px;
  64. top: 0px;
  65. height: 100%;
  66. }
  67. .text {
  68. position: absolute;
  69. left: 0px;
  70. top: 0px;
  71. width: 100%;
  72. height: 100%;
  73. text-align: center;
  74. color: @white;
  75. padding: 2px 0px;
  76. text-shadow:
  77. 2px 0px #2d2136,
  78. -2px 0px #2d2136,
  79. 0px -2px #2d2136,
  80. 0px 2px #2d2136,
  81. -2px -2px #2d2136,
  82. -2px 2px #2d2136,
  83. 2px -2px #2d2136,
  84. 2px 2px #2d2136;
  85. }
  86. &:nth-child(2) {
  87. background-color: #802343;
  88. }
  89. &:nth-child(3) {
  90. background-color: #42548d;
  91. }
  92. &:nth-child(4) {
  93. background-color: @brownD;
  94. }
  95. .statHp {
  96. background-color: @red;
  97. }
  98. .statMana {
  99. background-color: #3fa7dd;
  100. }
  101. .statCasting {
  102. background-color: @yellowB;
  103. }
  104. }
  105. }
  106. }
  107. .mobile .uiTarget {
  108. left: 10px;
  109. top: 100px;
  110. }