Ignore:
Timestamp:
06/17/24 21:59:14 (2 weeks ago)
Author:
223021 <daniel.ilievski.2@…>
Branches:
main
Children:
08f82ec
Parents:
b248810
Message:

Added an edit profile page for both job seekers and recruiters, where they can upload profile pictures/company logos and edit their profile data. Added profile page specifically for recruiters. Refactored existing code.

File:
1 moved

Legend:

Unmodified
Added
Removed
  • jobvista-frontend/src/views/shared_css/Modal.css

    rb248810 rbefb988  
    22.modal-wrap {
    33    display: inline;
    4 }
    5 .btn-open-modal {
    6     font-size: 18px;
    7     border-radius: 10px;
    8     padding: 5px 10px;
    9     background-color: #06367a;
    10     border: none;
    11     color: #fff;
    12     font-weight: 600;
    13     float: right;
    14     /*margin-left: 10px;*/
    154}
    165
     
    2615    background: #f1f1f1;
    2716    border-radius: 10px;
    28     width: 1300px !important;
    29     //min-width: 300px;
     17    min-width: 1000px !important;
     18    max-width: 1000px !important;
    3019    height: auto;
    3120    padding: 0 !important;
     
    4130    border-top-right-radius: 10px;
    4231    background-color: rgba(1,38,90,0.9);
     32    /*background-color: white;*/
    4333    background-size: cover;
    4434    padding: 14px 48px;
     35    /*color: #3A3B3C;*/
    4536    color: white;
     37    border-bottom: 1px solid #E5E4E7;
     38    display: flex;
     39    justify-content: left;
    4640}
    4741
     
    5044    font-weight: bold;
    5145    display: inline;
     46    margin: 0;
    5247}
    5348
     
    6055}
    6156
    62 .react-responsive-modal-modal .modal-content form .aligned {
    63     text-align: center;
     57.react-responsive-modal-modal .modal-content form .modal-buttons{
     58    display: flex;
     59    justify-content: end;
     60    gap: 10px;
     61    margin-right: 10px;
    6462}
    6563
     
    6967}
    7068
    71 input {
     69.react-responsive-modal-modal .modal-content form input {
    7270    display: block;
    7371    padding: 5px 10px;
     
    7775}
    7876
    79 textarea {
     77.react-responsive-modal-modal .modal-content form textarea {
    8078    width: 100%;
    8179    resize: none;
     
    8987}
    9088
    91 .applictaion-textarea {
     89.application-textarea {
    9290    height: 100px;
    9391}
     
    108106}
    109107
    110 .submit-btn {
     108.modal-buttons button, .modal-buttons div {
    111109    position: relative;
    112110    padding: 5px 20px;
     
    114112    border: none;
    115113    color: white;
    116     text-transform: uppercase;
    117     font-weight: bold;
    118     width: 30%;
    119     /*clip-path: polygon(100% 0, 100% 75%, 95% 100%, 0 100%, 0 0);*/
    120     background: linear-gradient(to right, #06367a, #06367a);
     114    /*text-transform: uppercase;*/
     115    font-weight: 500;
    121116    margin-top: 15px;
     117    cursor: pointer
     118}
     119
     120.modal-buttons .submit-btn {
     121    background: #06367a;
     122    transition: background-color 0.3s ease, color 0.3s ease;
     123}
     124
     125.modal-buttons .submit-btn:hover {
     126    background-color: #2e579b;
     127}
     128
     129.modal-buttons .cancel-btn {
     130    color: #858B96;
     131    background-color: #F0F0F0;
     132    transition: background-color 0.3s ease, color 0.3s ease;
     133}
     134.modal-buttons .cancel-btn:hover {
     135    background-color: #e0e0e0;
     136    color: #555;
    122137}
    123138
     
    156171
    157172
    158 .cancel-btn, .delete-btn {
     173.modal-delete-buttons .cancel-btn, .modal-delete-buttons .delete-btn {
    159174    display: inline;
    160175    border: none;
     
    163178}
    164179
    165 .delete-btn {
     180.modal-delete-buttons .delete-btn {
    166181    background-color: red;
    167182    color: white;
Note: See TracChangeset for help on using the changeset viewer.