source: jobvista-frontend/src/views/shared_css/Modal.css@ 4d97b63

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

Implemented Google login, additional file uploads, response messages and email notifications

  • Property mode set to 100644
File size: 3.7 KB
Line 
1
2.modal-wrap {
3 display: inline;
4}
5
6.btn-close-modal {
7 position: absolute;
8 top: 15px;
9 right: 15px;
10 padding: 5px 7px;
11 cursor: pointer;
12}
13
14.react-responsive-modal-modal {
15 background: #f1f1f1;
16 border-radius: 10px;
17 min-width: 1000px !important;
18 max-width: 1000px !important;
19 height: auto;
20 padding: 0 !important;
21 overflow-y: hidden;
22}
23
24.react-responsive-modal-closeButton {
25 display: none !important;
26}
27
28.react-responsive-modal-modal .head-modal {
29 border-top-left-radius: 10px;
30 border-top-right-radius: 10px;
31 background-color: rgba(1,38,90,0.9);
32 /*background-color: white;*/
33 background-size: cover;
34 padding: 14px 48px;
35 /*color: #3A3B3C;*/
36 color: white;
37 border-bottom: 1px solid #E5E4E7;
38 display: flex;
39 justify-content: left;
40}
41
42.react-responsive-modal-modal .head-modal h3 {
43 text-transform: uppercase;
44 font-weight: bold;
45 display: inline;
46 margin: 0;
47}
48
49
50.react-responsive-modal-modal .modal-content {
51 /*line-height: 1.4;*/
52 padding: 30px 48px;
53 /*height: 100%;*/
54 border: 0;
55}
56
57.react-responsive-modal-modal .modal-content form .modal-buttons{
58 display: flex;
59 justify-content: end;
60 gap: 10px;
61 margin-right: 10px;
62}
63
64
65.react-responsive-modal-modal .modal-content form .label {
66 display: block;
67 margin-bottom: 10px;
68 font-weight: 500;
69}
70
71.react-responsive-modal-modal .modal-content form input {
72 display: block;
73 padding: 5px 10px;
74 width: 100%;
75 border-radius: 3px;
76 border: 1px solid lightgrey;
77}
78
79.react-responsive-modal-modal .modal-content form textarea {
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.application-textarea {
92 height: 100px;
93 /*margin-bottom: 20px;*/
94}
95
96.resume-link {
97 display: block;
98 padding: 5px 10px;
99 width: 100%;
100 border-radius: 3px;
101 border: 1px solid lightgrey;
102}
103.custom {
104 margin-top: 10px;
105}
106
107input:focus, textarea:focus {
108 outline-color: cornflowerblue;
109}
110
111.modal-buttons button, .modal-buttons div {
112 position: relative;
113 padding: 5px 20px;
114 border-radius: 5px;
115 border: none;
116 color: white;
117 /*text-transform: uppercase;*/
118 font-weight: 500;
119 margin-top: 15px;
120 cursor: pointer
121}
122
123.modal-buttons .submit-btn {
124 background: #06367a;
125 transition: background-color 0.3s ease, color 0.3s ease;
126}
127
128.modal-buttons .submit-btn:hover {
129 background-color: #2e579b;
130}
131
132.modal-buttons .cancel-btn {
133 color: #858B96;
134 background-color: #F0F0F0;
135 transition: background-color 0.3s ease, color 0.3s ease;
136}
137.modal-buttons .cancel-btn:hover {
138 background-color: #e0e0e0;
139 color: #555;
140}
141
142.category-option {
143 display: flex;
144 align-items: center;
145 gap: 10px;
146}
147
148/* DELETE MODAL */
149
150.modal-delete-buttons {
151 display: flex;
152 justify-content: flex-end;
153 gap: 10px;
154 margin-top: 25px;
155}
156
157.modal-delete-content {
158 padding: 20px 25px;
159}
160
161.modal-delete-content-inside {
162 display: flex;
163 align-items: center;
164}
165
166.modal-delete-text {
167 padding-left: 35px;
168
169}
170
171.modal-delete-text p {
172 margin: 0;
173}
174
175
176.modal-delete-buttons .cancel-btn, .modal-delete-buttons .delete-btn {
177 display: inline;
178 border: none;
179 padding: 5px 25px 5px 25px;
180 border-radius: 7px;
181}
182
183.modal-delete-buttons .delete-btn {
184 background-color: red;
185 color: white;
186}
187
188.x-icon {
189 transform: scale(3.3) !important;
190 color: #D93936 !important;
191 padding: 0 15px !important;
192 /*margin-top: 20px !important;*/
193}
194
195.ql-snow .ql-picker.ql-font {
196 display: none;
197}
198.ql-toolbar.ql-snow .ql-picker-options {
199 background-color: white;
200}
201.ql-snow .ql-tooltip {
202 transform: translateX(100px) !important;
203}
204
205
206
207
208
Note: See TracBrowser for help on using the repository browser.