| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- .uploadCV-main-container {
- display: flex;
- width: 100%;
- height: 100%;
- background-color: gray;
- justify-content: center;
- align-items: center;
- }
-
- .uploadCV-container {
- display: flex;
- width: 512px;
- height: 591px;
- background-color: #fff;
- border-radius: 18px;
- padding: 36px;
- flex-direction: column;
- }
-
- .uploadCV-top-container {
- display: flex;
- align-items: center;
- height: fit-content;
- justify-content: space-between;
- }
-
- .uploadCV-top-container-image1 {
- width: 18px;
- height: 16.88px;
- }
-
- .uploadCV-top-container-image2 {
- width: 9px;
- height: 10.5px;
- margin-left: 54px;
- }
-
- .uploadCV-top-container-text {
- margin-left: 9px;
- }
-
- .uploadCV-top-container-text > p:first-child {
- font-family: Source Sans Pro;
- font-size: 24px;
- font-weight: 600;
- line-height: 32px;
- letter-spacing: 0.02em;
- text-align: left;
- }
-
- .uploadCV-top-container-text > p:last-child {
- font-family: Source Sans Pro;
- font-size: 16px;
- font-weight: 600;
- line-height: 20px;
- letter-spacing: 0em;
- text-align: left;
- color: #226cb0;
- }
-
- .uploadCV-content-container {
- display: flex;
- flex-direction: column;
- margin-top: 36px;
- }
-
- .uploadCV-input {
- width: 100%;
- height: 140px;
- border: 1px solid #e4e4e4;
- border-radius: 6px;
- margin-top: 6px;
- display: flex;
- justify-content: center;
- align-items: center;
- }
-
- .uploadCV-content-sub-container {
- display: flex;
- flex-direction: column;
- }
-
- .uploadCV-content-sub-container > p {
- font-family: Source Sans Pro;
- font-size: 14px;
- font-weight: 400;
- line-height: 18px;
- letter-spacing: 0em;
- text-align: left;
- }
-
- .uploadCV-input-sub-container {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
-
- .uploadCV-input-sub-container img {
- width: 22px;
- height: 22px;
- }
-
- .uploadCV-input-sub-container p {
- width: 332px;
- height: 40px;
- font-family: Source Sans Pro;
- font-size: 16px;
- font-weight: 400;
- line-height: 20.11px;
- letter-spacing: 0em;
- text-align: center;
- }
-
- .uploadCV-input2 {
- width: 100%;
- height: 140px;
- border: 1px solid #e4e4e4;
- border-radius: 6px;
- margin-top: 6px;
- padding: 15px;
- resize: none;
- }
-
- .uploadCV-input2::placeholder {
- color: #9d9d9d;
- font-family: Source Sans Pro;
- font-size: 14px;
- font-style: italic;
- font-weight: 400;
- line-height: 18px;
- letter-spacing: 0em;
- text-align: left;
- word-break: break-all;
- white-space: normal;
- }
-
- .uploadCV-buttons-container {
- display: flex;
- margin-top: 35px;
- justify-content: space-between;
- flex-direction: row;
- }
-
- .uploadCV-button {
- width: 202px;
- height: 51px;
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
-
- gap: 10;
- border-radius: 9px;
- border: none;
- font-family: "Source Sans Pro";
- font-style: normal;
- font-size: 12px;
- line-height: 15px;
- letter-spacing: 0.04em;
- text-transform: uppercase;
- color: #ffffff;
- cursor: pointer;
- }
-
- .uploadCV-buttons-container > button:first-child {
- @extend .uploadCV-button;
- background: #ffffff;
- color: #226cb0;
- border: 1px solid #226cb0;
- padding: 18px 72px;
- font-weight: 600;
- }
-
- .uploadCV-buttons-container > button:last-child {
- @extend .uploadCV-button;
- background: #226cb0;
- color: #ffffff;
- padding: 18px 22px;
- border: 1px solid #226cb0;
- }
|