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.
 
 
 

49 lines
668 B

  1. @import "../../../css/colors.less";
  2. .uiMode {
  3. position: absolute;
  4. left: 10px;
  5. top: 10px;
  6. padding: 10px;
  7. width: 120px;
  8. background-color: @blackC;
  9. text-align: center;
  10. .heading {
  11. color: @white;
  12. margin-bottom: 15px;
  13. }
  14. input {
  15. border: none;
  16. outline: none;
  17. width: calc(100% - 10px);
  18. height: 20px;
  19. padding: 5px;
  20. display: box;
  21. }
  22. .btn {
  23. float: left;
  24. width: 100%;
  25. color: @white;
  26. background-color: @blueB;
  27. padding: 5px;
  28. box-sizing: border-box;
  29. cursor: pointer;
  30. &:not(:last-child) {
  31. margin-bottom: 15px;
  32. }
  33. &:hover, &.active {
  34. background-color: @tealB;
  35. color: @blackB;
  36. }
  37. &:nth-child(3) {
  38. clear: both;
  39. }
  40. }
  41. }