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.

_uploadCVPage.scss 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. .uploadCV-main-container {
  2. display: flex;
  3. width: 100%;
  4. height: 100%;
  5. background-color: gray;
  6. justify-content: center;
  7. align-items: center;
  8. }
  9. .uploadCV-container {
  10. display: flex;
  11. width: 512px;
  12. height: 591px;
  13. background-color: #fff;
  14. border-radius: 18px;
  15. padding: 36px;
  16. flex-direction: column;
  17. }
  18. .uploadCV-top-container {
  19. display: flex;
  20. align-items: center;
  21. height: fit-content;
  22. justify-content: space-between;
  23. }
  24. .uploadCV-top-container-image1 {
  25. width: 18px;
  26. height: 16.88px;
  27. }
  28. .uploadCV-top-container-image2 {
  29. width: 9px;
  30. height: 10.5px;
  31. margin-left: 54px;
  32. }
  33. .uploadCV-top-container-text {
  34. margin-left: 9px;
  35. }
  36. .uploadCV-top-container-text > p:first-child {
  37. font-family: Source Sans Pro;
  38. font-size: 24px;
  39. font-weight: 600;
  40. line-height: 32px;
  41. letter-spacing: 0.02em;
  42. text-align: left;
  43. }
  44. .uploadCV-top-container-text > p:last-child {
  45. font-family: Source Sans Pro;
  46. font-size: 16px;
  47. font-weight: 600;
  48. line-height: 20px;
  49. letter-spacing: 0em;
  50. text-align: left;
  51. color: #226cb0;
  52. }
  53. .uploadCV-content-container {
  54. display: flex;
  55. flex-direction: column;
  56. margin-top: 36px;
  57. }
  58. .uploadCV-input {
  59. width: 100%;
  60. height: 140px;
  61. border: 1px solid #e4e4e4;
  62. border-radius: 6px;
  63. margin-top: 6px;
  64. display: flex;
  65. justify-content: center;
  66. align-items: center;
  67. }
  68. .uploadCV-content-sub-container {
  69. display: flex;
  70. flex-direction: column;
  71. }
  72. .uploadCV-content-sub-container > p {
  73. font-family: Source Sans Pro;
  74. font-size: 14px;
  75. font-weight: 400;
  76. line-height: 18px;
  77. letter-spacing: 0em;
  78. text-align: left;
  79. }
  80. .uploadCV-input-sub-container {
  81. display: flex;
  82. flex-direction: column;
  83. align-items: center;
  84. justify-content: center;
  85. }
  86. .uploadCV-input-sub-container img {
  87. width: 22px;
  88. height: 22px;
  89. }
  90. .uploadCV-input-sub-container p {
  91. width: 332px;
  92. height: 40px;
  93. font-family: Source Sans Pro;
  94. font-size: 16px;
  95. font-weight: 400;
  96. line-height: 20.11px;
  97. letter-spacing: 0em;
  98. text-align: center;
  99. }
  100. .uploadCV-input2 {
  101. width: 100%;
  102. height: 140px;
  103. border: 1px solid #e4e4e4;
  104. border-radius: 6px;
  105. margin-top: 6px;
  106. padding: 15px;
  107. resize: none;
  108. }
  109. .uploadCV-input2::placeholder {
  110. color: #9d9d9d;
  111. font-family: Source Sans Pro;
  112. font-size: 14px;
  113. font-style: italic;
  114. font-weight: 400;
  115. line-height: 18px;
  116. letter-spacing: 0em;
  117. text-align: left;
  118. word-break: break-all;
  119. white-space: normal;
  120. }
  121. .uploadCV-buttons-container {
  122. display: flex;
  123. margin-top: 35px;
  124. justify-content: space-between;
  125. flex-direction: row;
  126. }
  127. .uploadCV-button {
  128. width: 202px;
  129. height: 51px;
  130. display: flex;
  131. flex-direction: row;
  132. justify-content: center;
  133. align-items: center;
  134. gap: 10;
  135. border-radius: 9px;
  136. border: none;
  137. font-family: "Source Sans Pro";
  138. font-style: normal;
  139. font-size: 12px;
  140. line-height: 15px;
  141. letter-spacing: 0.04em;
  142. text-transform: uppercase;
  143. color: #ffffff;
  144. cursor: pointer;
  145. }
  146. .uploadCV-buttons-container > button:first-child {
  147. @extend .uploadCV-button;
  148. background: #ffffff;
  149. color: #226cb0;
  150. border: 1px solid #226cb0;
  151. padding: 18px 72px;
  152. font-weight: 600;
  153. }
  154. .uploadCV-buttons-container > button:last-child {
  155. @extend .uploadCV-button;
  156. background: #226cb0;
  157. color: #ffffff;
  158. padding: 18px 22px;
  159. border: 1px solid #226cb0;
  160. }