source: jobvista-frontend/src/views/job_advertisements/Form.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: 2.7 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
92input:focus, textarea:focus {
93 outline-color: cornflowerblue;
94}
95
96.submit-btn {
97 position: relative;
98 padding: 5px 20px;
99 border-radius: 5px;
100 border: none;
101 color: white;
102 text-transform: uppercase;
103 font-weight: bold;
104 width: 30%;
105 /*clip-path: polygon(100% 0, 100% 75%, 95% 100%, 0 100%, 0 0);*/
106 background: linear-gradient(to right, #06367a, #06367a);
107 margin-top: 15px;
108}
109
110.category-option {
111 display: flex;
112 align-items: center;
113 gap: 10px;
114}
115
116/* DELETE MODAL */
117
118.modal-delete-buttons {
119 display: flex;
120 justify-content: flex-end;
121 gap: 10px;
122 margin-top: 25px;
123}
124
125.modal-delete-content {
126 padding: 20px 25px;
127}
128
129.modal-delete-content-inside {
130 display: flex;
131 align-items: center;
132}
133
134.modal-delete-text {
135 padding-left: 35px;
136
137}
138
139.modal-delete-text p {
140 margin: 0;
141}
142
143
144.cancel-btn, .delete-btn {
145 display: inline;
146 border: none;
147 padding: 5px 25px 5px 25px;
148 border-radius: 7px;
149}
150
151.delete-btn {
152 background-color: red;
153 color: white;
154}
155
156.x-icon {
157 transform: scale(3.3) !important;
158 color: #D93936 !important;
159 padding: 0 15px !important;
160 /*margin-top: 20px !important;*/
161}
162
163
164
165
166
Note: See TracBrowser for help on using the repository browser.