Ignore:
Timestamp:
06/09/24 14:24:03 (4 months ago)
Author:
223021 <daniel.ilievski.2@…>
Branches:
main
Children:
b248810
Parents:
19398ad
Message:

Implemented job application functionality, added job advertisement filtering and replaced text areas with editors

File:
1 edited

Legend:

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

    r19398ad r28b3398  
    44.App {
    55  background-color: rgb(243, 242, 241);
     6  //background-color: #EBF2FC;
    67  height: 100vh;
    78  overflow-y: auto;
     
    4041
    4142.react-responsive-modal-overlay {
    42   backdrop-filter: blur(2px);
     43  backdrop-filter: blur(3px);
    4344}
    4445
     
    4748.col {
    4849  height: 280px !important;
     50}
     51
     52.add-new-card {
     53  border-radius: 8px;
     54  background-color: transparent;
     55  border: 3px dashed grey;
     56  transition: all 0.3s ease;
     57  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
     58  transform: translate(0, 0);
     59  height: 260px;
     60  width: 100%;
     61  color: grey;
     62  font-family: Ubuntu;
     63  text-transform: uppercase;
     64}
     65.add-new-card h3 {
     66  font-size: 25px;
     67}
     68.add-new-card:hover {
     69  /*transform: translate(0, 8px);*/
     70  /*box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);*/
     71  color: black;
     72  border: 3px dashed black;
    4973}
    5074
Note: See TracChangeset for help on using the changeset viewer.