You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

63 lines
881 B

  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. }