source: jobvista-frontend/src/views/job_advertisements/JobAdDetails.css@ 19398ad

main
Last change on this file since 19398ad was 19398ad, checked in by 223021 <daniel.ilievski.2@…>, 7 weeks ago

Implemented backend and frontend CRUD operations for job advertisements

  • Property mode set to 100644
File size: 1.1 KB
Line 
1
2/*font-family: 'Ubuntu', sans-serif;*/
3/*font-family: 'Cairo', sans-serif;*/
4/*font-family: 'Poppins', sans-serif;*/
5
6* {
7 //font-family: Poppins, sans-serif;
8}
9
10.details-wrap {
11 width: 100%;
12 //height: auto;
13 height: 80vh;
14 overflow-y: auto;
15 background-color: #fff;
16 border-radius: 12px;
17 padding: 15px 20px;
18 margin-bottom: 20px;
19 margin-top: 30px;
20}
21
22.details-wrap .details-head-info {
23 font-size: 18px;
24}
25
26.job-type, .expired {
27 font-size: 16px;
28 padding: 3px 8px;
29 border-radius: 5px;
30 font-family: Poppins;
31 position: relative;
32 bottom: 5px;
33 margin-left: 13px;
34}
35
36.expired {
37 background-color: transparent;
38 border: 1px solid indianred;
39 color: indianred;
40 font-weight: 600;
41}
42
43.job-type {
44 background-color: indianred;
45 color: white;
46}
47
48.title {
49 //display: inline-flex;
50 //justify-items: start;
51 display: block;
52}
53
54.title h2, .title span {
55 display: inline-block;
56}
57
58.apply:not(.expired) {
59 width: 20% !important;
60 background-size: 200% auto;
61
62}
63.apply:not(.expired):hover {
64 width: 20% !important;
65 background-position: right center;
66}
Note: See TracBrowser for help on using the repository browser.