25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

styles.less 881 B

6 yıl önce
6 yıl önce
6 yıl önce
6 yıl önce
6 yıl önce
6 yıl önce
6 yıl önce
6 yıl önce
6 yıl önce
6 yıl önce
6 yıl önce
6 yıl önce
6 yıl önce
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. @import "../../../css/colors.less";
  2. .uiGroups {
  3. position: absolute;
  4. left: 10px;
  5. bottom: 10px;
  6. padding: 10px;
  7. width: 200px;
  8. background-color: #373041;
  9. text-align: center;
  10. .heading-text {
  11. color: @white;
  12. margin-bottom: 15px;
  13. }
  14. .list {
  15. &:not(:empty) {
  16. margin-bottom: 15px;
  17. }
  18. .item {
  19. width: 100%;
  20. color: @white;
  21. background-color: @blackA;
  22. padding: 5px 0px 5px 0px;
  23. margin-bottom: 5px;
  24. cursor: pointer;
  25. &:hover {
  26. background-color: @grayC;
  27. }
  28. &:last-child {
  29. margin-bottom: 0px;
  30. }
  31. &.active {
  32. background-color: @grayC;
  33. }
  34. }
  35. }
  36. .btn {
  37. width: calc((100% - 30px) / 3);
  38. color: @white;
  39. background-color: @blueB;
  40. padding: 5px;
  41. box-sizing: border-box;
  42. float: left;
  43. cursor: pointer;
  44. &:hover {
  45. background-color: @tealB;
  46. color: @blackB;
  47. }
  48. &:not(:last-child) {
  49. margin-right: 15px;
  50. }
  51. }
  52. }