source: jobvista-frontend/src/views/job_advertisements/JobAdDetails.css@ 08f82ec

main
Last change on this file since 08f82ec was 08f82ec, checked in by 223021 <daniel.ilievski.2@…>, 11 days ago

Did more refactoring

  • Property mode set to 100644
File size: 2.0 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 max-height: 80vh;
14 overflow-y: auto;
15 background-color: #fff;
16 border-radius: 12px;
17 padding: 15px 20px;
18 margin-bottom: 20px;
19
20 /*scrollbar-width: thin; !* "auto" hides scrollbar on some browsers, "thin" shows a thin scrollbar *!*/
21 /*scrollbar-color: #999999 #fff;*/
22}
23
24.min-wrap {
25 min-height: 80vh;
26}
27
28.details-wrap .span-about {
29 color: darkgray;
30}
31
32
33
34.details-wrap-profile {
35 width: 100%;
36 height: auto;
37
38 background-color: #fff;
39 border-radius: 12px;
40 padding: 15px 20px;
41 margin-bottom: 20px;
42 margin-top: 30px;
43}
44
45.details-wrap .details-head-info {
46 font-size: 18px;
47}
48
49.job-type, .expired {
50 font-size: 16px;
51 padding: 3px 8px;
52 border-radius: 5px;
53 font-family: Poppins;
54 position: relative;
55 bottom: 5px;
56 margin-left: 13px;
57}
58
59.expired {
60 background-color: transparent;
61 border: 1px solid indianred;
62 color: indianred;
63 font-weight: 600;
64}
65
66.job-type {
67 background-color: indianred;
68 color: white;
69}
70
71.title {
72 //display: inline-flex;
73 //justify-items: start;
74 display: block;
75}
76
77.title h2, .title span {
78 display: inline-block;
79}
80
81.apply-button {
82 border: 0;
83 border-radius: 8px;
84 width: 45%;
85 background-image: linear-gradient(to right, #a1c4fd 0%, aliceblue 61%, #a1c4fd 100%);
86 background-size: 200% auto;
87 font-weight: bold;
88 padding: 5px 10px;
89 transition: 0.4s;
90}
91
92.apply-button:not(.disabled):hover{
93 background-color: rgb(187, 215, 235);
94 color: black;
95}
96
97.disabled {
98 cursor: default !important;
99 opacity: 0.6;
100}
101
102.apply:not(.expired) {
103 width: 20% !important;
104 background-size: 200% auto;
105
106}
107.apply:not(.expired):hover {
108 width: 20% !important;
109 background-position: right center;
110}
111
112.recruiter-link {
113 color: black;
114 font-size: 30px;
115 text-decoration:none;
116}
Note: See TracBrowser for help on using the repository browser.