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

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

Did more refactoring

  • 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}
68
69.react-responsive-modal-modal .modal-content form input {
70 display: block;
71 padding: 5px 10px;
72 width: 100%;
73 border-radius: 3px;
74 border: 1px solid lightgrey;
75}
76
77.react-responsive-modal-modal .modal-content form textarea {
78 width: 100%;
79 resize: none;
80 border-radius: 3px;
81 border: 1px solid lightgrey;
82 padding: 5px 10px;
83}
84
85.description-textarea {
86 height: 285px;
87}
88
89.application-textarea {
90 height: 100px;
91 /*margin-bottom: 20px;*/
92}
93
94.resume-link {
95 display: block;
96 padding: 5px 10px;
97 width: 100%;
98 border-radius: 3px;
99 border: 1px solid lightgrey;
100}
101.custom {
102 margin-top: 10px;
103}
104
105input:focus, textarea:focus {
106 outline-color: cornflowerblue;
107}
108
109.modal-buttons button, .modal-buttons div {
110 position: relative;
111 padding: 5px 20px;
112 border-radius: 5px;
113 border: none;
114 color: white;
115 /*text-transform: uppercase;*/
116 font-weight: 500;
117 margin-top: 15px;
118 cursor: pointer
119}
120
121.modal-buttons .submit-btn {
122 background: #06367a;
123 transition: background-color 0.3s ease, color 0.3s ease;
124}
125
126.modal-buttons .submit-btn:hover {
127 background-color: #2e579b;
128}
129
130.modal-buttons .cancel-btn {
131 color: #858B96;
132 background-color: #F0F0F0;
133 transition: background-color 0.3s ease, color 0.3s ease;
134}
135.modal-buttons .cancel-btn:hover {
136 background-color: #e0e0e0;
137 color: #555;
138}
139
140.category-option {
141 display: flex;
142 align-items: center;
143 gap: 10px;
144}
145
146/* DELETE MODAL */
147
148.modal-delete-buttons {
149 display: flex;
150 justify-content: flex-end;
151 gap: 10px;
152 margin-top: 25px;
153}
154
155.modal-delete-content {
156 padding: 20px 25px;
157}
158
159.modal-delete-content-inside {
160 display: flex;
161 align-items: center;
162}
163
164.modal-delete-text {
165 padding-left: 35px;
166
167}
168
169.modal-delete-text p {
170 margin: 0;
171}
172
173
174.modal-delete-buttons .cancel-btn, .modal-delete-buttons .delete-btn {
175 display: inline;
176 border: none;
177 padding: 5px 25px 5px 25px;
178 border-radius: 7px;
179}
180
181.modal-delete-buttons .delete-btn {
182 background-color: red;
183 color: white;
184}
185
186.x-icon {
187 transform: scale(3.3) !important;
188 color: #D93936 !important;
189 padding: 0 15px !important;
190 /*margin-top: 20px !important;*/
191}
192
193.ql-snow .ql-picker.ql-font {
194 display: none;
195}
196.ql-toolbar.ql-snow .ql-picker-options {
197 background-color: white;
198}
199.ql-snow .ql-tooltip {
200 transform: translateX(100px) !important;
201}
202
203
204
205
206
Note: See TracBrowser for help on using the repository browser.