Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 

93 рядки
1.3 KiB

  1. @import "../../../css/ui.less";
  2. @pad: 8px;
  3. .uiHud {
  4. position: absolute;
  5. left: 10px;
  6. top: 10px;
  7. width: calc(280px + (@pad * 2));
  8. padding: @pad;
  9. background-color: fade(#3a3b4a, 90%);
  10. .portraitBox {
  11. float: left;
  12. margin-right: 12px;
  13. .portrait {
  14. visibility: hidden;
  15. width: 64px;
  16. height: 64px;
  17. }
  18. }
  19. .boxes {
  20. width: calc(100% - 76px);
  21. float: left;
  22. height: 100%;
  23. .statBox {
  24. width: 100%;
  25. height: 18px;
  26. margin-bottom: 5px;
  27. position: relative;
  28. &:last-child {
  29. margin-bottom: 0px;
  30. }
  31. [class^="stat"] {
  32. position: absolute;
  33. left: 0px;
  34. top: 0px;
  35. height: 100%;
  36. }
  37. .text {
  38. position: absolute;
  39. left: 0px;
  40. top: 0px;
  41. width: 100%;
  42. height: 100%;
  43. text-align: center;
  44. color: @white;
  45. padding: 2px 0px;
  46. line-height: 16px;
  47. text-shadow:
  48. 2px 0px #2d2136,
  49. -2px 0px #2d2136,
  50. 0px -2px #2d2136,
  51. 0px 2px #2d2136,
  52. -2px -2px #2d2136,
  53. -2px 2px #2d2136,
  54. 2px -2px #2d2136,
  55. 2px 2px #2d2136;
  56. }
  57. &:nth-child(1) {
  58. background-color: #802343;
  59. }
  60. &:nth-child(2) {
  61. background-color: #42548d;
  62. }
  63. &:nth-child(3) {
  64. background-color: #386646;
  65. }
  66. .statHp {
  67. background-color: #d43346;
  68. }
  69. .statMana {
  70. background-color: #3fa7dd;
  71. }
  72. .statXp {
  73. background-color: #4ac441;
  74. }
  75. }
  76. }
  77. }