webcimes-modal 1.0.2 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,416 +1,418 @@
1
- /**
2
- * Copyright (c) 2023 WebCimes - RICHARD Florian (https://webcimes.com)
3
- * MIT License - https://choosealicense.com/licenses/mit/
4
- * Date: 2023-03-25
5
- */
6
-
7
- /*
8
- -----------------------
9
- WEBCIMES MODAL
10
- -----------------------
11
- */
12
-
13
- .webcimesModals,
14
- .webcimesModals *,
15
- .webcimesModals *::before,
16
- .webcimesModals *::after
17
- {
18
- -webkit-box-sizing: border-box;
19
- -moz-box-sizing: border-box;
20
- box-sizing: border-box;
21
- }
22
- .webcimesModals
23
- {
24
- --webcimes-modals-background: rgba(0,0,0,0.8);
25
- --webcimes-modals-z-index: 5;
26
-
27
- position: fixed;
28
- background: var(--webcimes-modals-background);
29
- top: 0;
30
- bottom: 0;
31
- left: 0;
32
- right: 0;
33
- display: flex;
34
- align-items: center;
35
- justify-content: center;
36
- z-index: var(--webcimes-modals-z-index);
37
- }
38
- .webcimesModals > .modal
39
- {
40
- --modal-color: inherit;
41
- --modal-background: #fff;
42
- --modal-border-color: #ddd;
43
- --modal-box-shadow: 1px 1px 3px 0px #444;
44
- --modal-title-font-size: 24px;
45
- --modal-button-cancel-background: rgba(102,102,102,1);
46
- --modal-button-cancel-background-hover: rgba(102,102,102,0.7);
47
- --modal-button-cancel-color: #fff;
48
- --modal-button-cancel-color-hover: #fff;
49
- --modal-button-confirm-background: rgba(0,0,0,1);
50
- --modal-button-confirm-background-hover: rgba(0,0,0,0.7);
51
- --modal-button-confirm-color: #fff;
52
- --modal-button-confirm-color-hover: #fff;
53
-
54
- position: absolute;
55
- border-radius: 5px;
56
- overflow:auto;
57
- color: var(--modal-color);
58
- background: var(--modal-background);
59
- -webkit-box-shadow: var(--modal-box-shadow);
60
- -moz-box-shadow: var(--modal-box-shadow);
61
- -o-box-shadow: var(--modal-box-shadow);
62
- box-shadow: var(--modal-box-shadow);
63
- }
64
- .webcimesModals > .modal button
65
- {
66
- font-family: inherit;
67
- font-size: inherit;
68
- font-weight: inherit;
69
- border: none;
70
- background: none;
71
- }
72
- .webcimesModals > .modal > .modalHeader
73
- {
74
- position: relative;
75
- background: var(--modal-background);
76
- padding: 20px 40px;
77
- border-bottom: 1px solid var(--modal-border-color);
78
- display: flex;
79
- align-items: center;
80
- }
81
- .webcimesModals > .modal > .modalHeader.sticky
82
- {
83
- position: sticky;
84
- top: 0;
85
- }
86
- .webcimesModals > .modal > .modalHeader.movable
87
- {
88
- cursor: move;
89
- touch-action: none;
90
- }
91
- .webcimesModals > .modal > .modalHeader > .title
92
- {
93
- flex: 1;
94
- overflow: hidden;
95
- text-overflow: ellipsis;
96
- font-size: var(--modal-title-font-size);
97
- }
98
- .webcimesModals > .modal > .modalHeader > .close
99
- {
100
- position: absolute;
101
- height: 20px;
102
- width: 12px;
103
- right: 15px;
104
- top: 50%;
105
- margin-top: -10px;
106
- background-image: url("images/times.svg");
107
- cursor: pointer;
108
- opacity: 1;
109
- -webkit-transition: opacity 0.6s ease 0s;
110
- -moz-transition: opacity 0.6s ease 0s;
111
- -o-transition: opacity 0.6s ease 0s;
112
- transition: opacity 0.6s ease 0s;
113
- }
114
- .webcimesModals > .modal > .modalHeader > .close:hover
115
- {
116
- opacity: 0.5;
117
- }
118
- .webcimesModals > .modal > .modalBody
119
- {
120
- padding: 20px 40px;
121
- }
122
- .webcimesModals > .modal > .modalBody.movable
123
- {
124
- cursor: move;
125
- }
126
- .webcimesModals > .modal > .modalFooter
127
- {
128
- background: var(--modal-background);
129
- padding: 20px 40px;
130
- border-top: 1px solid var(--modal-border-color);
131
- display: flex;
132
- justify-content: flex-end;
133
- flex-wrap: wrap;
134
- }
135
- .webcimesModals > .modal > .modalFooter.sticky
136
- {
137
- position: sticky;
138
- bottom: 0;
139
- }
140
- .webcimesModals > .modal > .modalFooter.movable
141
- {
142
- cursor: move;
143
- touch-action: none;
144
- }
145
- .webcimesModals > .modal > .modalFooter button
146
- {
147
- max-width: 100%;
148
- flex: 0 0 auto;
149
- border-radius: 5px;
150
- padding: 10px 30px;
151
- margin: 5px;
152
- cursor: pointer;
153
- text-overflow: ellipsis;
154
- overflow: hidden;
155
- -webkit-transition: color 0.6s ease 0s, background 0.6s ease 0s;
156
- -moz-transition: color 0.6s ease 0s, background 0.6s ease 0s;
157
- -o-transition: color 0.6s ease 0s, background 0.6s ease 0s;
158
- transition: color 0.6s ease 0s, background 0.6s ease 0s;
159
- }
160
- .webcimesModals > .modal > .modalFooter button.cancel
161
- {
162
- background: var(--modal-button-cancel-background);
163
- color: var(--modal-button-cancel-color);
164
- }
165
- .webcimesModals > .modal > .modalFooter button.cancel:hover
166
- {
167
- background: var(--modal-button-cancel-background-hover);
168
- color: var(--modal-button-cancel-color-hover);
169
- }
170
- .webcimesModals > .modal > .modalFooter button.confirm
171
- {
172
- background: var(--modal-button-confirm-background);
173
- color: var(--modal-button-confirm-color);
174
- }
175
- .webcimesModals > .modal > .modalFooter button.confirm:hover
176
- {
177
- background: var(--modal-button-confirm-background-hover);
178
- color: var(--modal-button-confirm-color-hover);
179
- }
180
-
181
- /* ANIMATIONS */
182
-
183
- @-webkit-keyframes animFadeIn
184
- {
185
- 0%
186
- {
187
- opacity: 0;
188
- }
189
- 100%
190
- {
191
- opacity: 1;
192
- }
193
- }
194
- @keyframes animFadeIn
195
- {
196
- 0%
197
- {
198
- opacity:0;
199
- }
200
- 100%
201
- {
202
- opacity:1;
203
- }
204
- }
205
- .animFadeIn
206
- {
207
- -webkit-animation-duration: 0.5s;
208
- animation-duration: 0.5s;
209
- -webkit-animation-fill-mode: both;
210
- animation-fill-mode: both;
211
- -webkit-animation-name: animFadeIn;
212
- animation-name: animFadeIn;
213
- }
214
-
215
- @-webkit-keyframes animFadeOut
216
- {
217
- 0%
218
- {
219
- opacity: 1;
220
- }
221
- 100%
222
- {
223
- opacity: 0;
224
- }
225
- }
226
- @keyframes animFadeOut
227
- {
228
- 0%
229
- {
230
- opacity: 1;
231
- }
232
- 100%
233
- {
234
- opacity: 0;
235
- }
236
- }
237
- .animFadeOut
238
- {
239
- -webkit-animation-duration: 0.5s;
240
- animation-duration: 0.5s;
241
- -webkit-animation-fill-mode: both;
242
- animation-fill-mode: both;
243
- -webkit-animation-name: animFadeOut;
244
- animation-name: animFadeOut;
245
- }
246
-
247
- @-webkit-keyframes animDropDown
248
- {
249
- 0%
250
- {
251
- -webkit-transform: translateY(-20vh);
252
- -moz-transform: translateY(-20vh);
253
- -ms-transform: translateY(-20vh);
254
- -o-transform: translateY(-20vh);
255
- transform: translateY(-20vh);
256
- opacity: 0;
257
- }
258
- 100%
259
- {
260
- -webkit-transform: translateY(0);
261
- -moz-transform: translateY(0);
262
- -ms-transform: translateY(0);
263
- -o-transform: translateY(0);
264
- transform: translateY(0);
265
- opacity: 1;
266
- }
267
- }
268
-
269
- @keyframes animDropDown
270
- {
271
- 0%
272
- {
273
- -webkit-transform: translateY(-20vh);
274
- -moz-transform: translateY(-20vh);
275
- -ms-transform: translateY(-20vh);
276
- -o-transform: translateY(-20vh);
277
- transform: translateY(-20vh);
278
- opacity: 0;
279
- }
280
- 100%
281
- {
282
- -webkit-transform: translateY(0);
283
- -moz-transform: translateY(0);
284
- -ms-transform: translateY(0);
285
- -o-transform: translateY(0);
286
- transform: translateY(0);
287
- opacity: 1;
288
- }
289
- }
290
- .animDropDown
291
- {
292
- -webkit-animation-duration: 0.5s;
293
- animation-duration: 0.5s;
294
- -webkit-animation-fill-mode: both;
295
- animation-fill-mode: both;
296
- -webkit-animation-name: animDropDown;
297
- animation-name: animDropDown;
298
- }
299
-
300
- @-webkit-keyframes animDropUp
301
- {
302
- 0%
303
- {
304
- -webkit-transform: translateY(0);
305
- -moz-transform: translateY(0);
306
- -ms-transform: translateY(0);
307
- -o-transform: translateY(0);
308
- transform: translateY(0);
309
- opacity: 1;
310
- }
311
- 100%
312
- {
313
- -webkit-transform: translateY(-20vh);
314
- -moz-transform: translateY(-20vh);
315
- -ms-transform: translateY(-20vh);
316
- -o-transform: translateY(-20vh);
317
- transform: translateY(-20vh);
318
- opacity: 0;
319
- }
320
- }
321
-
322
- @keyframes animDropUp
323
- {
324
- 0%
325
- {
326
- -webkit-transform: translateY(0);
327
- -moz-transform: translateY(0);
328
- -ms-transform: translateY(0);
329
- -o-transform: translateY(0);
330
- transform: translateY(0);
331
- opacity: 1;
332
- }
333
- 100%
334
- {
335
- -webkit-transform: translateY(-20vh);
336
- -moz-transform: translateY(-20vh);
337
- -ms-transform: translateY(-20vh);
338
- -o-transform: translateY(-20vh);
339
- transform: translateY(-20vh);
340
- opacity: 0;
341
- }
342
- }
343
- .animDropUp
344
- {
345
- -webkit-animation-duration: 0.5s;
346
- animation-duration: 0.5s;
347
- -webkit-animation-fill-mode: both;
348
- animation-fill-mode: both;
349
- -webkit-animation-name: animDropUp;
350
- animation-name: animDropUp;
351
- }
352
-
353
- @-webkit-keyframes animGrowShrink
354
- {
355
- 0%
356
- {
357
- -webkit-transform: scale(1);
358
- -moz-transform: scale(1);
359
- -ms-transform: scale(1);
360
- -o-transform: scale(1);
361
- transform: scale(1);
362
- }
363
- 50%
364
- {
365
- -webkit-transform: scale(1.2);
366
- -moz-transform: scale(1.2);
367
- -ms-transform: scale(1.2);
368
- -o-transform: scale(1.2);
369
- transform: scale(1.2);
370
- }
371
- 100%
372
- {
373
- -webkit-transform: scale(1);
374
- -moz-transform: scale(1);
375
- -ms-transform: scale(1);
376
- -o-transform: scale(1);
377
- transform: scale(1);
378
- }
379
- }
380
-
381
- @keyframes animGrowShrink
382
- {
383
- 0%
384
- {
385
- -webkit-transform: scale(1);
386
- -moz-transform: scale(1);
387
- -ms-transform: scale(1);
388
- -o-transform: scale(1);
389
- transform: scale(1);
390
- }
391
- 50%
392
- {
393
- -webkit-transform: scale(1.1);
394
- -moz-transform: scale(1.1);
395
- -ms-transform: scale(1.1);
396
- -o-transform: scale(1.1);
397
- transform: scale(1.1);
398
- }
399
- 100%
400
- {
401
- -webkit-transform: scale(1);
402
- -moz-transform: scale(1);
403
- -ms-transform: scale(1);
404
- -o-transform: scale(1);
405
- transform: scale(1);
406
- }
407
- }
408
- .animGrowShrink
409
- {
410
- -webkit-animation-duration: 0.5s;
411
- animation-duration: 0.5s;
412
- -webkit-animation-fill-mode: both;
413
- animation-fill-mode: both;
414
- -webkit-animation-name: animGrowShrink;
415
- animation-name: animGrowShrink;
416
- }
1
+ /**
2
+ * Copyright (c) 2023 WebCimes - RICHARD Florian (https://webcimes.com)
3
+ * MIT License - https://choosealicense.com/licenses/mit/
4
+ * Date: 2023-03-25
5
+ */
6
+
7
+ /*
8
+ -----------------------
9
+ WEBCIMES MODAL
10
+ -----------------------
11
+ */
12
+
13
+ .webcimesModals,
14
+ .webcimesModals *,
15
+ .webcimesModals *::before,
16
+ .webcimesModals *::after
17
+ {
18
+ -webkit-box-sizing: border-box;
19
+ -moz-box-sizing: border-box;
20
+ box-sizing: border-box;
21
+ }
22
+ .webcimesModals
23
+ {
24
+ --webcimes-modals-background: rgba(0,0,0,0.8);
25
+ --webcimes-modals-z-index: 5;
26
+
27
+ position: fixed;
28
+ background: var(--webcimes-modals-background);
29
+ top: 0;
30
+ bottom: 0;
31
+ left: 0;
32
+ right: 0;
33
+ display: flex;
34
+ align-items: center;
35
+ justify-content: center;
36
+ z-index: var(--webcimes-modals-z-index);
37
+ }
38
+ .webcimesModals > .modal
39
+ {
40
+ --modal-color: inherit;
41
+ --modal-background: #fff;
42
+ --modal-border-color: #ddd;
43
+ --modal-box-shadow: 1px 1px 3px 0px #444;
44
+ --modal-title-font-size: 24px;
45
+ --modal-button-cancel-background: rgba(102,102,102,1);
46
+ --modal-button-cancel-background-hover: rgba(102,102,102,0.7);
47
+ --modal-button-cancel-color: #fff;
48
+ --modal-button-cancel-color-hover: #fff;
49
+ --modal-button-confirm-background: rgba(0,0,0,1);
50
+ --modal-button-confirm-background-hover: rgba(0,0,0,0.7);
51
+ --modal-button-confirm-color: #fff;
52
+ --modal-button-confirm-color-hover: #fff;
53
+
54
+ position: absolute;
55
+ border-radius: 5px;
56
+ overflow:auto;
57
+ color: var(--modal-color);
58
+ background: var(--modal-background);
59
+ -webkit-box-shadow: var(--modal-box-shadow);
60
+ -moz-box-shadow: var(--modal-box-shadow);
61
+ -o-box-shadow: var(--modal-box-shadow);
62
+ box-shadow: var(--modal-box-shadow);
63
+ }
64
+ .webcimesModals > .modal button
65
+ {
66
+ font-family: inherit;
67
+ font-size: inherit;
68
+ font-weight: inherit;
69
+ border: none;
70
+ background: none;
71
+ }
72
+ .webcimesModals > .modal > .modalHeader
73
+ {
74
+ position: relative;
75
+ background: var(--modal-background);
76
+ padding: 20px 40px;
77
+ border-bottom: 1px solid var(--modal-border-color);
78
+ display: flex;
79
+ align-items: center;
80
+ }
81
+ .webcimesModals > .modal > .modalHeader.sticky
82
+ {
83
+ position: sticky;
84
+ top: 0;
85
+ }
86
+ .webcimesModals > .modal > .modalHeader.movable
87
+ {
88
+ cursor: move;
89
+ touch-action: none;
90
+ }
91
+ .webcimesModals > .modal > .modalHeader > .title
92
+ {
93
+ flex: 1;
94
+ overflow: hidden;
95
+ text-overflow: ellipsis;
96
+ font-size: var(--modal-title-font-size);
97
+ }
98
+ .webcimesModals > .modal > .modalHeader > .close
99
+ {
100
+ position: absolute;
101
+ height: 20px;
102
+ width: 12px;
103
+ right: 15px;
104
+ top: 50%;
105
+ margin-top: -10px;
106
+ background-image: url(../images/times.svg);
107
+ cursor: pointer;
108
+ opacity: 1;
109
+ -webkit-transition: opacity 0.6s ease 0s;
110
+ -moz-transition: opacity 0.6s ease 0s;
111
+ -o-transition: opacity 0.6s ease 0s;
112
+ transition: opacity 0.6s ease 0s;
113
+ }
114
+ .webcimesModals > .modal > .modalHeader > .close:hover
115
+ {
116
+ opacity: 0.5;
117
+ }
118
+ .webcimesModals > .modal > .modalBody
119
+ {
120
+ padding: 20px 40px;
121
+ }
122
+ .webcimesModals > .modal > .modalBody.movable
123
+ {
124
+ cursor: move;
125
+ }
126
+ .webcimesModals > .modal > .modalFooter
127
+ {
128
+ background: var(--modal-background);
129
+ padding: 20px 40px;
130
+ border-top: 1px solid var(--modal-border-color);
131
+ display: flex;
132
+ justify-content: flex-end;
133
+ flex-wrap: wrap;
134
+ }
135
+ .webcimesModals > .modal > .modalFooter.sticky
136
+ {
137
+ position: sticky;
138
+ bottom: 0;
139
+ }
140
+ .webcimesModals > .modal > .modalFooter.movable
141
+ {
142
+ cursor: move;
143
+ touch-action: none;
144
+ }
145
+ .webcimesModals > .modal > .modalFooter button
146
+ {
147
+ max-width: 100%;
148
+ flex: 0 0 auto;
149
+ border-radius: 5px;
150
+ padding: 10px 30px;
151
+ margin: 5px;
152
+ cursor: pointer;
153
+ text-overflow: ellipsis;
154
+ overflow: hidden;
155
+ -webkit-transition: color 0.6s ease 0s, background 0.6s ease 0s;
156
+ -moz-transition: color 0.6s ease 0s, background 0.6s ease 0s;
157
+ -o-transition: color 0.6s ease 0s, background 0.6s ease 0s;
158
+ transition: color 0.6s ease 0s, background 0.6s ease 0s;
159
+ }
160
+ .webcimesModals > .modal > .modalFooter button.cancel
161
+ {
162
+ background: var(--modal-button-cancel-background);
163
+ color: var(--modal-button-cancel-color);
164
+ }
165
+ .webcimesModals > .modal > .modalFooter button.cancel:hover
166
+ {
167
+ background: var(--modal-button-cancel-background-hover);
168
+ color: var(--modal-button-cancel-color-hover);
169
+ }
170
+ .webcimesModals > .modal > .modalFooter button.confirm
171
+ {
172
+ background: var(--modal-button-confirm-background);
173
+ color: var(--modal-button-confirm-color);
174
+ }
175
+ .webcimesModals > .modal > .modalFooter button.confirm:hover
176
+ {
177
+ background: var(--modal-button-confirm-background-hover);
178
+ color: var(--modal-button-confirm-color-hover);
179
+ }
180
+
181
+ /* ANIMATIONS */
182
+
183
+ @-webkit-keyframes animFadeIn
184
+ {
185
+ 0%
186
+ {
187
+ opacity: 0;
188
+ }
189
+ 100%
190
+ {
191
+ opacity: 1;
192
+ }
193
+ }
194
+ @keyframes animFadeIn
195
+ {
196
+ 0%
197
+ {
198
+ opacity:0;
199
+ }
200
+ 100%
201
+ {
202
+ opacity:1;
203
+ }
204
+ }
205
+ .animFadeIn
206
+ {
207
+ -webkit-animation-duration: 0.5s;
208
+ animation-duration: 0.5s;
209
+ -webkit-animation-fill-mode: both;
210
+ animation-fill-mode: both;
211
+ -webkit-animation-name: animFadeIn;
212
+ animation-name: animFadeIn;
213
+ }
214
+
215
+ @-webkit-keyframes animFadeOut
216
+ {
217
+ 0%
218
+ {
219
+ opacity: 1;
220
+ }
221
+ 100%
222
+ {
223
+ opacity: 0;
224
+ }
225
+ }
226
+ @keyframes animFadeOut
227
+ {
228
+ 0%
229
+ {
230
+ opacity: 1;
231
+ }
232
+ 100%
233
+ {
234
+ opacity: 0;
235
+ }
236
+ }
237
+ .animFadeOut
238
+ {
239
+ -webkit-animation-duration: 0.5s;
240
+ animation-duration: 0.5s;
241
+ -webkit-animation-fill-mode: both;
242
+ animation-fill-mode: both;
243
+ -webkit-animation-name: animFadeOut;
244
+ animation-name: animFadeOut;
245
+ }
246
+
247
+ @-webkit-keyframes animDropDown
248
+ {
249
+ 0%
250
+ {
251
+ -webkit-transform: translateY(-20vh);
252
+ -moz-transform: translateY(-20vh);
253
+ -ms-transform: translateY(-20vh);
254
+ -o-transform: translateY(-20vh);
255
+ transform: translateY(-20vh);
256
+ opacity: 0;
257
+ }
258
+ 100%
259
+ {
260
+ -webkit-transform: translateY(0);
261
+ -moz-transform: translateY(0);
262
+ -ms-transform: translateY(0);
263
+ -o-transform: translateY(0);
264
+ transform: translateY(0);
265
+ opacity: 1;
266
+ }
267
+ }
268
+
269
+ @keyframes animDropDown
270
+ {
271
+ 0%
272
+ {
273
+ -webkit-transform: translateY(-20vh);
274
+ -moz-transform: translateY(-20vh);
275
+ -ms-transform: translateY(-20vh);
276
+ -o-transform: translateY(-20vh);
277
+ transform: translateY(-20vh);
278
+ opacity: 0;
279
+ }
280
+ 100%
281
+ {
282
+ -webkit-transform: translateY(0);
283
+ -moz-transform: translateY(0);
284
+ -ms-transform: translateY(0);
285
+ -o-transform: translateY(0);
286
+ transform: translateY(0);
287
+ opacity: 1;
288
+ }
289
+ }
290
+ .animDropDown
291
+ {
292
+ -webkit-animation-duration: 0.5s;
293
+ animation-duration: 0.5s;
294
+ -webkit-animation-fill-mode: both;
295
+ animation-fill-mode: both;
296
+ -webkit-animation-name: animDropDown;
297
+ animation-name: animDropDown;
298
+ }
299
+
300
+ @-webkit-keyframes animDropUp
301
+ {
302
+ 0%
303
+ {
304
+ -webkit-transform: translateY(0);
305
+ -moz-transform: translateY(0);
306
+ -ms-transform: translateY(0);
307
+ -o-transform: translateY(0);
308
+ transform: translateY(0);
309
+ opacity: 1;
310
+ }
311
+ 100%
312
+ {
313
+ -webkit-transform: translateY(-20vh);
314
+ -moz-transform: translateY(-20vh);
315
+ -ms-transform: translateY(-20vh);
316
+ -o-transform: translateY(-20vh);
317
+ transform: translateY(-20vh);
318
+ opacity: 0;
319
+ }
320
+ }
321
+
322
+ @keyframes animDropUp
323
+ {
324
+ 0%
325
+ {
326
+ -webkit-transform: translateY(0);
327
+ -moz-transform: translateY(0);
328
+ -ms-transform: translateY(0);
329
+ -o-transform: translateY(0);
330
+ transform: translateY(0);
331
+ opacity: 1;
332
+ }
333
+ 100%
334
+ {
335
+ -webkit-transform: translateY(-20vh);
336
+ -moz-transform: translateY(-20vh);
337
+ -ms-transform: translateY(-20vh);
338
+ -o-transform: translateY(-20vh);
339
+ transform: translateY(-20vh);
340
+ opacity: 0;
341
+ }
342
+ }
343
+ .animDropUp
344
+ {
345
+ -webkit-animation-duration: 0.5s;
346
+ animation-duration: 0.5s;
347
+ -webkit-animation-fill-mode: both;
348
+ animation-fill-mode: both;
349
+ -webkit-animation-name: animDropUp;
350
+ animation-name: animDropUp;
351
+ }
352
+
353
+ @-webkit-keyframes animGrowShrink
354
+ {
355
+ 0%
356
+ {
357
+ -webkit-transform: scale(1);
358
+ -moz-transform: scale(1);
359
+ -ms-transform: scale(1);
360
+ -o-transform: scale(1);
361
+ transform: scale(1);
362
+ }
363
+ 50%
364
+ {
365
+ -webkit-transform: scale(1.2);
366
+ -moz-transform: scale(1.2);
367
+ -ms-transform: scale(1.2);
368
+ -o-transform: scale(1.2);
369
+ transform: scale(1.2);
370
+ }
371
+ 100%
372
+ {
373
+ -webkit-transform: scale(1);
374
+ -moz-transform: scale(1);
375
+ -ms-transform: scale(1);
376
+ -o-transform: scale(1);
377
+ transform: scale(1);
378
+ }
379
+ }
380
+
381
+ @keyframes animGrowShrink
382
+ {
383
+ 0%
384
+ {
385
+ -webkit-transform: scale(1);
386
+ -moz-transform: scale(1);
387
+ -ms-transform: scale(1);
388
+ -o-transform: scale(1);
389
+ transform: scale(1);
390
+ }
391
+ 50%
392
+ {
393
+ -webkit-transform: scale(1.1);
394
+ -moz-transform: scale(1.1);
395
+ -ms-transform: scale(1.1);
396
+ -o-transform: scale(1.1);
397
+ transform: scale(1.1);
398
+ }
399
+ 100%
400
+ {
401
+ -webkit-transform: scale(1);
402
+ -moz-transform: scale(1);
403
+ -ms-transform: scale(1);
404
+ -o-transform: scale(1);
405
+ transform: scale(1);
406
+ }
407
+ }
408
+ .animGrowShrink
409
+ {
410
+ -webkit-animation-duration: 0.5s;
411
+ animation-duration: 0.5s;
412
+ -webkit-animation-fill-mode: both;
413
+ animation-fill-mode: both;
414
+ -webkit-animation-name: animGrowShrink;
415
+ animation-name: animGrowShrink;
416
+ }
417
+
418
+ /*# sourceMappingURL=webcimes-modal.css.map*/