source: jobvista-frontend/src/views/job_advertisements/Form.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: 3.1 KB
Line 
1
2.modal-wrap {
3 display: inline;
4}
5.btn-open-modal {
6 font-size: 18px;
7 border-radius: 10px;
8 padding: 5px 10px;
9 background-color: #06367a;
10 border: none;
11 color: #fff;
12 font-weight: 600;
13 float: right;
14 /*margin-left: 10px;*/
15}
16
17.btn-close-modal {
18 position: absolute;
19 top: 15px;
20 right: 15px;
21 padding: 5px 7px;
22 cursor: pointer;
23}
24
25.react-responsive-modal-modal {
26 background: #f1f1f1;
27 border-radius: 10px;
28 width: 1300px !important;
29 //min-width: 300px;
30 height: auto;
31 padding: 0 !important;
32 overflow-y: hidden;
33}
34
35.react-responsive-modal-closeButton {
36 display: none !important;
37}
38
39.react-responsive-modal-modal .head-modal {
40 border-top-left-radius: 10px;
41 border-top-right-radius: 10px;
42 background-color: rgba(1,38,90,0.9);
43 background-size: cover;
44 padding: 14px 48px;
45 color: white;
46}
47
48.react-responsive-modal-modal .head-modal h3 {
49 text-transform: uppercase;
50 font-weight: bold;
51 display: inline;
52}
53
54
55.react-responsive-modal-modal .modal-content {
56 /*line-height: 1.4;*/
57 padding: 30px 48px;
58 /*height: 100%;*/
59 border: 0;
60}
61
62.react-responsive-modal-modal .modal-content form .aligned {
63 text-align: center;
64}
65
66
67.react-responsive-modal-modal .modal-content form .label {
68 display: block;
69}
70
71input {
72 display: block;
73 padding: 5px 10px;
74 width: 100%;
75 border-radius: 3px;
76 border: 1px solid lightgrey;
77}
78
79textarea {
80 width: 100%;
81 resize: none;
82 border-radius: 3px;
83 border: 1px solid lightgrey;
84 padding: 5px 10px;
85}
86
87.description-textarea {
88 height: 285px;
89}
90
91.applictaion-textarea {
92 height: 100px;
93}
94
95.resume-link {
96 display: block;
97 padding: 5px 10px;
98 width: 100%;
99 border-radius: 3px;
100 border: 1px solid lightgrey;
101}
102.custom {
103 margin-top: 10px;
104}
105
106input:focus, textarea:focus {
107 outline-color: cornflowerblue;
108}
109
110.submit-btn {
111 position: relative;
112 padding: 5px 20px;
113 border-radius: 5px;
114 border: none;
115 color: white;
116 text-transform: uppercase;
117 font-weight: bold;
118 width: 30%;
119 /*clip-path: polygon(100% 0, 100% 75%, 95% 100%, 0 100%, 0 0);*/
120 background: linear-gradient(to right, #06367a, #06367a);
121 margin-top: 15px;
122}
123
124.category-option {
125 display: flex;
126 align-items: center;
127 gap: 10px;
128}
129
130/* DELETE MODAL */
131
132.modal-delete-buttons {
133 display: flex;
134 justify-content: flex-end;
135 gap: 10px;
136 margin-top: 25px;
137}
138
139.modal-delete-content {
140 padding: 20px 25px;
141}
142
143.modal-delete-content-inside {
144 display: flex;
145 align-items: center;
146}
147
148.modal-delete-text {
149 padding-left: 35px;
150
151}
152
153.modal-delete-text p {
154 margin: 0;
155}
156
157
158.cancel-btn, .delete-btn {
159 display: inline;
160 border: none;
161 padding: 5px 25px 5px 25px;
162 border-radius: 7px;
163}
164
165.delete-btn {
166 background-color: red;
167 color: white;
168}
169
170.x-icon {
171 transform: scale(3.3) !important;
172 color: #D93936 !important;
173 padding: 0 15px !important;
174 /*margin-top: 20px !important;*/
175}
176
177.ql-snow .ql-picker.ql-font {
178 display: none;
179}
180.ql-toolbar.ql-snow .ql-picker-options {
181 background-color: white;
182}
183.ql-snow .ql-tooltip {
184 transform: translateX(100px) !important;
185}
186
187
188
189
190
Note: See TracBrowser for help on using the repository browser.