source: jobvista-frontend/src/views/applications/Applications.css

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

Did more refactoring

  • Property mode set to 100644
File size: 3.4 KB
Line 
1.custom-container {
2 width: 65% !important;
3 max-width: 1500px !important;
4 margin: auto;
5}
6
7.application-title {
8 font-family: "Segoe UI";
9 margin-top: 40px;
10 margin-bottom: 20px;
11 display: flex;
12 justify-content: start;
13 border-bottom: 1px solid #CFCFCF;
14}
15.application-title h3 {
16 font-weight: 500;
17}
18
19/*.application-title span {*/
20/* font-weight: bold;*/
21/* */
22/*}*/
23
24.application-card {
25 font-family: Poppins;
26 border: 1px solid lightgray;
27 border-radius: 8px;
28 background-color: white;
29 transition: all 0.3s ease;
30 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
31 height: auto;
32 padding: 20px 20px;
33 display: flex;
34 /*justify-content: center;*/
35 /*gap: 20px;*/
36 margin: 15px 0;
37 /*z-index: -1000;*/
38}
39.application-card .app-job-seeker-pic {
40 border: 1px solid gray;
41 border-radius: 50%;
42 margin-right: 20px;
43}
44.application-card .app-job-seeker-pic img {
45 border-radius: 50%;
46}
47
48.application-card .app-company-logo {
49 width: 8%;
50}
51
52.application-card .app-info {
53 width: 65%;
54 display: inline-flex;
55 flex-direction: column;
56 align-items: flex-start;
57 justify-content: center;
58 gap: 10px;
59}
60
61.application-card .app-info .jobAd-title {
62 font-weight: 600;
63 font-size: 1.2rem;
64 /*text-transform: uppercase;*/
65 font-family: 'Segoe UI', sans-serif;
66 text-decoration: none;
67 color: black
68}
69
70.
71
72.application-card .app-info .contact-info {
73 display: inline-flex;
74 gap: 30px;
75}
76.application-card .app-info .contact-info .contact-item {
77 display: inline-flex;
78 align-items: center;
79 gap: 5px;
80 margin-right: 10px
81}
82
83.application-card .app-info .contact-info .contact-item span {
84 color: darkgray;
85}
86
87.application-card .app-status {
88 width: 28%;
89 display: inline-flex;
90 justify-content: end;
91 align-items: center;
92 gap: 10px;
93}
94
95.application-card .app-status .select {
96 width: 45%;
97 display: inline-block;
98}
99
100.status {
101 color: white;
102 padding: 5px 10px;
103 border-radius: 5px;
104 width: 150px;
105 text-align: center;
106}
107
108
109.application-button {
110 border: 0;
111 border-radius: 8px;
112 width: auto;
113 background-image: linear-gradient(to bottom, #dddddd, #f0f0f0);
114 background-color: #dddddd;
115 color: #333333;
116
117 font-weight: 700;
118 padding: 8px 13px;
119}
120
121.application-button:hover {
122 background: linear-gradient(to bottom, #bbbbbb, #dddddd);
123 color: #333333;
124}
125
126/*.application-card:hover {*/
127/* transform: translate(0, 8px);*/
128/* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);*/
129/*}*/
130
131.multi-button button{
132 /*font-size: 5vmin;*/
133 padding: .5em 1em;
134 background: #fff;
135 color: #4A5568;
136 border: 0px solid #A0AEC0;
137 //margin: .1em;
138 transition: background .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
139 box-shadow: 0 0 0 #BEE3F8;
140 transform: translateY(0);
141}
142.multi-button button:first-of-type{
143 border-radius: .5em 0 0 .5em;
144}
145.multi-button button:last-of-type{
146 border-radius: 0 .5em .5em 0;
147}
148.multi-button button i{
149 color: #A0AEC0;
150 margin-right: .3em;
151 transition: all .2s ease-out;
152}
153.multi-button:hover button{
154 color: #A0AEC0;
155}
156
157.multi-button:hover button:hover{
158 background: #D53F8C;
159 color: #fff;
160 box-shadow: 0 0 0.8em 0 rgba(213, 63, 140, .8);
161 transform: translateY(-.2em);
162}
163.multi-button:hover button i{
164 color: #CBD5E0;
165}
166.multi-button:hover button:hover i{
167 color: #FED7E2;
168 transform: rotate(-10deg);
169}
Note: See TracBrowser for help on using the repository browser.