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

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

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

  • Property mode set to 100644
File size: 2.7 KB
Line 
1.applications-container {
2 width: 65% !important;
3 max-width: 1500px !important;
4 margin: auto;
5}
6
7.application-title {
8 font-family: Ubuntu;
9 text-transform: uppercase;
10 margin: 25px auto;
11 display: flex;
12 justify-content: center;
13}
14.application-title h1 {
15 font-weight: bold;
16}
17
18/*.application-title span {*/
19/* font-weight: bold;*/
20/* */
21/*}*/
22
23.application-card {
24 font-family: Poppins;
25 border: 1px solid lightgray;
26 border-radius: 8px;
27 background-color: white;
28 transition: all 0.3s ease;
29 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
30 transform: translate(0, 0);
31 height: auto;
32 padding: 20px 20px;
33 display: flex;
34 justify-content: center;
35 margin: 15px 0;
36}
37
38.application-card .left-box {
39 width: 55%;
40 display: inline-block;
41}
42
43.application-card .left-box .jobAd-title {
44 font-weight: 600;
45 /*text-transform: uppercase;*/
46 font-family: 'Segoe UI', sans-serif;
47 font-size: 22px;
48}
49
50.application-card .left-box .contact-info {
51 display: inline-flex;
52 gap: 10px;
53}
54.application-card .left-box .contact-info .contact-item {
55 display: inline-flex;
56 align-items: center;
57 gap: 5px;
58}
59
60.application-card .right-box {
61 width: 45%;
62 display: inline-flex;
63 justify-content: end;
64 align-items: center;
65 gap: 10px;
66}
67
68.application-card .right-box .select {
69 width: 35%;
70 display: inline-block;
71}
72
73.application-button {
74 border: 0;
75 border-radius: 8px;
76 width: auto;
77 background-color: rgba(207, 235, 255, 1);
78 color: black;
79 font-weight: bold;
80 padding: 5px 10px;
81 transition: 0.2s;
82}
83.application-button:hover {
84 background-color: rgb(187, 215, 235);
85}
86
87/*.application-card:hover {*/
88/* transform: translate(0, 8px);*/
89/* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);*/
90/*}*/
91
92.multi-button button{
93 /*font-size: 5vmin;*/
94 padding: .5em 1em;
95 background: #fff;
96 color: #4A5568;
97 border: 0px solid #A0AEC0;
98 //margin: .1em;
99 transition: background .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
100 box-shadow: 0 0 0 #BEE3F8;
101 transform: translateY(0);
102}
103.multi-button button:first-of-type{
104 border-radius: .5em 0 0 .5em;
105}
106.multi-button button:last-of-type{
107 border-radius: 0 .5em .5em 0;
108}
109.multi-button button i{
110 color: #A0AEC0;
111 margin-right: .3em;
112 transition: all .2s ease-out;
113}
114.multi-button:hover button{
115 color: #A0AEC0;
116}
117
118.multi-button:hover button:hover{
119 background: #D53F8C;
120 color: #fff;
121 box-shadow: 0 0 0.8em 0 rgba(213, 63, 140, .8);
122 transform: translateY(-.2em);
123}
124.multi-button:hover button i{
125 color: #CBD5E0;
126}
127.multi-button:hover button:hover i{
128 color: #FED7E2;
129 transform: rotate(-10deg);
130}
Note: See TracBrowser for help on using the repository browser.