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 edited

Legend:

Unmodified
Added
Removed
  • jobvista-frontend/src/App.css

    rb248810 rbefb988  
    22@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
    33
     4* {
     5  margin: 0;
     6  padding: 0;
     7  box-sizing: border-box;
     8}
     9
     10html {
     11  scroll-behavior: smooth;
     12}
     13
    414.App {
    5   background-color: rgb(243, 242, 241);
    6   //background-color: #EBF2FC;
     15  /*background-color: rgb(243, 242, 241);*/
     16  background-color: #F5F5F5;
     17  /*background-color: #F4F2EE;*/
     18  /*background-color: #0F0F0F;*/
     19  /*background-color: #EBF2FC;*/
    720  height: 100vh;
    821  overflow-y: auto;
     
    1427  -webkit-box-pack: center;
    1528  justify-content: center;
    16 margin-bottom: 20px;
     29  margin-bottom: 20px;
    1730  margin-top: 20px;
    1831}
     
    3649}
    3750
     51.container, .custom-container {
     52  margin-top: 120px !important;
     53}
     54
     55.no-additional-margin {
     56  margin-top: 80px !important;
     57}
     58
    3859
    3960/*font-family: 'Ubuntu', sans-serif;*/
     
    4970  height: 280px !important;
    5071}
     72
     73.container .g-4 {
     74  --bs-gutter-y: 6rem !important;
     75  margin-bottom: 100px !important;
     76}
     77
    5178
    5279.add-new-card {
     
    80107  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    81108  transform: translate(0, 0);
    82   height: 260px;
     109  height: auto;
    83110}
    84111
     
    167194  border-radius: 8px;
    168195  width: 45%;
    169   background-color: rgba(207, 235, 255, 1);
    170   //background-size: 200% auto;
    171   //background-image: linear-gradient(to right, #a1c4fd 0%, aliceblue 61%, #a1c4fd 100%);
    172   color: black;
     196  background-image: linear-gradient(to bottom, #dddddd, #f0f0f0);
     197  color: #333333;
    173198  font-weight: bold;
    174199  padding: 5px 10px;
    175200  transition: 0.2s;
     201  text-decoration: none;
     202  text-align: center;
    176203}
    177204
     
    180207}
    181208.card-button:not(.disabled):hover{
    182   background-color: rgb(187, 215, 235);
    183   //background-position: right center;
    184   color: black;
    185 }
    186 
    187 .disabled {
    188   cursor: default !important;
    189   opacity: 0.6;
    190 }
    191 
    192 
    193 
     209  background: linear-gradient(to bottom, #bbbbbb, #dddddd);
     210  color: #333333;
     211}
     212
     213
     214
     215
     216
Note: See TracChangeset for help on using the changeset viewer.