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.
 
 
 

38 lines
501 B

  1. @import "../../../css/colors.less";
  2. .uiLoad {
  3. position: absolute;
  4. right: 10px;
  5. top: 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. .item {
  16. width: 100%;
  17. color: @white;
  18. background-color: @blackA;
  19. padding: 5px 0px 5px 0px;
  20. margin-bottom: 5px;
  21. cursor: pointer;
  22. &:hover {
  23. background-color: @grayC;
  24. }
  25. &:last-child {
  26. margin-bottom: 0px;
  27. }
  28. }
  29. }
  30. }