Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

145 lignes
2.0 KiB

  1. @import "../../../css/ui.less";
  2. @pad: 8px;
  3. .uiParty {
  4. .party {
  5. position: absolute;
  6. left: 16px;
  7. top: 154px;
  8. .member {
  9. width: 160px;
  10. margin-bottom: @pad;
  11. background-color: #3a3b4a;
  12. color: @white;
  13. padding: 8px;
  14. cursor: pointer;
  15. &.differentZone {
  16. opacity: 0.4;
  17. .statBox {
  18. [class^="stat"] {
  19. width: 0% !important;
  20. }
  21. }
  22. }
  23. &:last-child {
  24. margin-bottom: 0px;
  25. }
  26. .statBox {
  27. width: 100%;
  28. height: 18px;
  29. background-color: @gray;
  30. position: relative;
  31. margin-bottom: 5px;
  32. &:last-child {
  33. margin-bottom: 0px;
  34. }
  35. [class^="stat"] {
  36. position: absolute;
  37. left: 0px;
  38. top: 0px;
  39. height: 100%;
  40. }
  41. .text {
  42. position: absolute;
  43. left: 0px;
  44. top: 0px;
  45. width: 100%;
  46. height: 100%;
  47. text-align: center;
  48. color: @white;
  49. padding: 2px 8px;
  50. overflow: hidden;
  51. text-overflow: ellipsis;
  52. text-shadow:
  53. 2px 0px #2d2136,
  54. -2px 0px #2d2136,
  55. 0px -2px #2d2136,
  56. 0px 2px #2d2136,
  57. -2px -2px #2d2136,
  58. -2px 2px #2d2136,
  59. 2px -2px #2d2136,
  60. 2px 2px #2d2136;
  61. }
  62. &:nth-child(1) {
  63. background-color: #802343;
  64. }
  65. &:nth-child(2) {
  66. background-color: #42548d;
  67. }
  68. .statHp {
  69. background-color: #d43346;
  70. }
  71. .statMana {
  72. background-color: #3fa7dd;
  73. }
  74. }
  75. }
  76. }
  77. .invite {
  78. position: absolute;
  79. right: 356px;
  80. bottom: 10px;
  81. height: 144px;
  82. background-color: fade(@darkGray, 90%);
  83. padding: 8px;
  84. color: @white;
  85. .text {
  86. margin-bottom: 16px;
  87. text-align: center;
  88. > * {
  89. display: block;
  90. width: 100%;
  91. }
  92. .name {
  93. margin-top: 10px;
  94. margin-bottom: -4px;
  95. }
  96. }
  97. .buttons {
  98. [class^='btn'] {
  99. width: 100%;
  100. background-color: @blackA;
  101. text-align: center;
  102. padding: 8px;
  103. cursor: pointer;
  104. color: @white;
  105. &.btnDecline {
  106. }
  107. &.btnAccept {
  108. margin-bottom: 10px;
  109. }
  110. &:hover {
  111. background-color: @grayD;
  112. color: @black;
  113. }
  114. }
  115. }
  116. }
  117. }