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.
 
 
 

45 lines
656 B

  1. @import "../../../css/colors.less";
  2. .uiSave {
  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 {
  11. color: @white;
  12. margin-bottom: 15px;
  13. }
  14. input {
  15. border: none;
  16. outline: none;
  17. width: 100%;
  18. display: block;
  19. height: 28px;
  20. padding: 5px;
  21. display: box;
  22. margin-bottom: 15px;
  23. font-size: 16px;
  24. }
  25. .btn {
  26. width: calc((100% - 15px) / 2);
  27. color: @white;
  28. margin-top: 15px;
  29. background-color: @blueB;
  30. padding: 5px;
  31. box-sizing: border-box;
  32. margin: 0 auto;
  33. cursor: pointer;
  34. &:hover {
  35. background-color: @tealB;
  36. color: @blackB;
  37. }
  38. }
  39. }