Vendor app Client: Maiora
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

161 lines
2.4 KiB

  1. /* You can add global styles to this file, and also import other style files */
  2. $ionicons-font-path: "~ionicons/dist/fonts";
  3. @import "~ionicons/dist/scss/ionicons.scss";
  4. :root {
  5. --brand-blue: #007bcc;
  6. --brand-yellow: #f79319;
  7. --grey: #9a9a9a;
  8. --dark-grey: #666666;
  9. }
  10. * {
  11. font-family: 'Roboto', sans-serif;
  12. box-sizing: border-box;
  13. margin: 0;
  14. padding: 0;
  15. outline: none;
  16. }
  17. a {
  18. text-decoration: none;
  19. cursor: pointer;
  20. }
  21. button {
  22. cursor: pointer;
  23. }
  24. .rect-button {
  25. border-radius: 5px;
  26. background-color: var(--brand-blue);
  27. color: white;
  28. border: 0px;
  29. height: 40px;
  30. font-size: 16px;
  31. padding: 0 15px;
  32. letter-spacing: 0.5px;
  33. }
  34. .round-button {
  35. padding: 0 20px;
  36. border-radius: 20px;
  37. background-color: #cecece;
  38. color: white;
  39. font-size: 13px;
  40. letter-spacing: 1px;
  41. height: 30px;
  42. border: 0px;
  43. }
  44. .widget-heading-holder {
  45. width: 90%;
  46. margin: 30px auto 0;
  47. display: flex;
  48. justify-content: space-between;
  49. header {
  50. font-size: 20px;
  51. color: var(--dark-grey);
  52. font-weight: 500;
  53. letter-spacing: 0.5px;
  54. }
  55. }
  56. .popup {
  57. position: fixed;
  58. width: 100%;
  59. height: 100%;
  60. left: 0;
  61. top: 0;
  62. z-index: 2;
  63. background-color: rgba(black, 0.8);
  64. display: flex;
  65. align-items: center;
  66. justify-content: center;
  67. transition: opacity 0.3s;
  68. transform: scale(0);
  69. opacity: 0;
  70. &.active {
  71. opacity: 1;
  72. transform: scale(1);
  73. .popup-box {
  74. transform: scale(1);
  75. }
  76. }
  77. .popup-box {
  78. background-color: white;
  79. border-radius: 10px;
  80. padding: 50px;
  81. text-align: center;
  82. transform: scale(0);
  83. transition: transform 0.3s;
  84. transition-delay: 0.3s;
  85. header {
  86. font-size: 16px;
  87. font-weight: 500;
  88. letter-spacing: 1px;
  89. }
  90. select {
  91. margin: 20px 0;
  92. width: 300px;
  93. padding: 10px;
  94. border-radius: 10px;
  95. font-size: 14px;
  96. color: var(--dark-grey);
  97. letter-spacing: 1px;
  98. }
  99. .action-buttons {
  100. button {
  101. margin: 0 10px;
  102. &:first-child {
  103. background-color: white;
  104. border: 1px solid var(--brand-blue);
  105. color: var(--brand-blue);
  106. }
  107. }
  108. }
  109. }
  110. }
  111. .toggle {
  112. position: relative;
  113. border-radius: 20px;
  114. background-color: #cecece;
  115. width: 50px;
  116. height: 20px;
  117. display: flex;
  118. align-items: center;
  119. margin: 0 auto;
  120. transition: background-color 0.4s;
  121. &.on {
  122. background-color: #8cc63f;
  123. .knob {
  124. transform: translateX(calc(50px - 18px));
  125. }
  126. }
  127. .knob {
  128. width: 16px;
  129. height: 16px;
  130. border-radius: 50%;
  131. background-color: white;
  132. position: relative;
  133. transition: transform 0.4s;
  134. transform: translateX(2px);
  135. }
  136. }