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.
 
 
 

63 lignes
942 B

  1. @import "../../../css/ui.less";
  2. @pad: 8px;
  3. @btnSize: 64px;
  4. .uiSpells {
  5. position: absolute;
  6. right: 10px;
  7. top: 10px;
  8. height: (@btnSize + (@pad * 2));
  9. padding: @pad;
  10. background-color: fade(#3a3b4a, 90%);
  11. .spell {
  12. width: @btnSize;
  13. height: @btnSize;
  14. float: left;
  15. margin: 0px 8px;
  16. cursor: pointer;
  17. position: relative;
  18. &:hover {
  19. background-color: fade(@white, 10%);
  20. }
  21. .icon {
  22. position: absolute;
  23. left: 0px;
  24. top: 0px;
  25. width: 100%;
  26. height: 100%;
  27. }
  28. .cooldown {
  29. position: absolute;
  30. left: 0px;
  31. top: 0px;
  32. width: 0px;
  33. height: 100%;
  34. background-color: fade(@red, 75%);
  35. }
  36. .hotkey {
  37. position: absolute;
  38. left: -2px;
  39. bottom: -6px;
  40. color: @white;
  41. font-size: 18px;
  42. z-index: 2;
  43. text-shadow: 2px 2px 0 #2d2136,
  44. -2px -2px 0 #2d2136,
  45. 2px -2px 0 #2d2136,
  46. -2px 2px 0 #2d2136,
  47. 2px 2px 0 #2d2136;
  48. &.no-mana {
  49. color: @red;
  50. }
  51. }
  52. }
  53. }