Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

57 строки
716 B

  1. @import "../../../css/ui.less";
  2. .uiQuests {
  3. width: 320px;
  4. .heading {
  5. color: @yellow;
  6. padding: 8px;
  7. background-color: fade(#3a3b4a, 90%);
  8. }
  9. .list {
  10. .quest {
  11. cursor: pointer;
  12. padding: 8px;
  13. background-color: fade(#3a3b4a, 90%);
  14. &:hover {
  15. background-color: fade(lighten(#3a3b4a, 15%), 90%);
  16. }
  17. .name {
  18. color: @white;
  19. margin-bottom: 3px;
  20. }
  21. .description {
  22. color: darken(@white, 35%);
  23. }
  24. .ready-text {
  25. display: none;
  26. }
  27. &.active {
  28. .name {
  29. color: @blue;
  30. }
  31. }
  32. &.ready {
  33. .name {
  34. color: @green;
  35. }
  36. .description {
  37. display: none;
  38. }
  39. .ready-text {
  40. display: block;
  41. color: @white;
  42. }
  43. }
  44. }
  45. }
  46. }