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.
 
 
 

46 lines
689 B

  1. @import "../../../css/colors.less";
  2. .uiImport {
  3. position: absolute;
  4. right: 10px;
  5. top: 10px;
  6. padding: 10px;
  7. width: 400px;
  8. height: 340px;
  9. background-color: #373041;
  10. text-align: center;
  11. .heading-text {
  12. color: @white;
  13. margin-bottom: 15px;
  14. }
  15. textarea {
  16. border: none;
  17. outline: none;
  18. width: 100%;
  19. display: block;
  20. height: 245px;
  21. padding: 5px;
  22. display: box;
  23. font-size: 16px;
  24. margin-bottom: 15px;
  25. }
  26. .btnImport {
  27. width: calc((100% - 15px) / 2);
  28. color: @white;
  29. margin-top: 15px;
  30. background-color: @blueB;
  31. padding: 5px;
  32. box-sizing: border-box;
  33. margin: 0 auto;
  34. cursor: pointer;
  35. &:hover {
  36. background-color: @tealB;
  37. color: @blackB;
  38. }
  39. }
  40. }