modalibrary 0.0.25 → 0.0.27
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/modalibrary/version.rb +1 -1
- data/vendor/assets/javascripts/web_library.min.js +6 -6
- data/vendor/assets/main.css +496 -0
- data/vendor/assets/stylesheets/web_library.css +75 -16
- metadata +4 -3
@@ -0,0 +1,496 @@
|
|
1
|
+
.grecaptcha-badge {
|
2
|
+
display: none; }
|
3
|
+
|
4
|
+
.recaptcha-challenge-container {
|
5
|
+
position: fixed !important;
|
6
|
+
top: 10px !important; }
|
7
|
+
|
8
|
+
.mo-web-modal-overlay {
|
9
|
+
position: fixed;
|
10
|
+
top: 0;
|
11
|
+
left: 0;
|
12
|
+
right: 0;
|
13
|
+
bottom: 0;
|
14
|
+
z-index: 10000;
|
15
|
+
overflow: scroll;
|
16
|
+
background-color: rgba(255, 255, 255, 0.9); }
|
17
|
+
.mo-web-modal-overlay .mo-web-modal {
|
18
|
+
position: absolute;
|
19
|
+
left: 50%;
|
20
|
+
top: 100px;
|
21
|
+
-webkit-transform: translateX(-50%);
|
22
|
+
-moz-transform: translateX(-50%);
|
23
|
+
transform: translateX(-50%);
|
24
|
+
background-color: #ffffff;
|
25
|
+
-moz-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.2);
|
26
|
+
-webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.2);
|
27
|
+
box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.2);
|
28
|
+
border: 1px solid #9a9a9a;
|
29
|
+
width: fit-content; }
|
30
|
+
|
31
|
+
.mo-web-loading-overlay-container {
|
32
|
+
position: relative; }
|
33
|
+
.mo-web-loading-overlay-container .loading-overlay {
|
34
|
+
position: absolute;
|
35
|
+
top: 0;
|
36
|
+
bottom: 0;
|
37
|
+
left: 0;
|
38
|
+
right: 0;
|
39
|
+
z-index: 1;
|
40
|
+
background-color: rgba(255, 255, 255, 0.9);
|
41
|
+
text-align: center; }
|
42
|
+
.mo-web-loading-overlay-container .loading-overlay.loading-overlay--full {
|
43
|
+
position: fixed;
|
44
|
+
z-index: 4; }
|
45
|
+
.mo-web-loading-overlay-container .loading-overlay .loading-overlay-content.loading-overlay-content--top {
|
46
|
+
margin-top: 20px; }
|
47
|
+
.mo-web-loading-overlay-container .loading-overlay .loading-overlay-content.loading-overlay-content--middle {
|
48
|
+
position: absolute;
|
49
|
+
left: 0;
|
50
|
+
right: 0;
|
51
|
+
top: 50%;
|
52
|
+
transform: translateY(-50%); }
|
53
|
+
.mo-web-loading-overlay-container .loading-overlay .loading-overlay-content .loading-message {
|
54
|
+
color: #9b885f;
|
55
|
+
font-family: "Gotham Medium", "Moda-Gotham-Medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
56
|
+
font-size: 11px;
|
57
|
+
letter-spacing: 0.1em;
|
58
|
+
text-transform: uppercase; }
|
59
|
+
|
60
|
+
.mo-web-form-errors {
|
61
|
+
font-size: 10px;
|
62
|
+
line-height: 12px;
|
63
|
+
color: #f62b0f;
|
64
|
+
margin-bottom: 20px; }
|
65
|
+
|
66
|
+
.mo-web-form-field .mo-web-form-field-error {
|
67
|
+
font-size: 10px;
|
68
|
+
line-height: 12px;
|
69
|
+
color: #f62b0f;
|
70
|
+
margin-top: 5px; }
|
71
|
+
|
72
|
+
.mo-web-input {
|
73
|
+
width: 100%;
|
74
|
+
height: 40px;
|
75
|
+
padding: 0 10px;
|
76
|
+
background-color: #ffffff;
|
77
|
+
border: 1px solid #d3d3d3;
|
78
|
+
font-size: 11px;
|
79
|
+
line-height: 12px;
|
80
|
+
color: #444444;
|
81
|
+
border-radius: 0;
|
82
|
+
box-sizing: border-box;
|
83
|
+
-webkit-appearance: none;
|
84
|
+
transition: border 200ms ease-in-out;
|
85
|
+
-moz-transition: border 200ms ease-in-out;
|
86
|
+
-webkit-transition: border 200ms ease-in-out;
|
87
|
+
-ms-transition: border 200ms ease-in-out; }
|
88
|
+
.mo-web-input:focus {
|
89
|
+
border: 1px solid #9b885f;
|
90
|
+
outline: 0; }
|
91
|
+
.mo-web-input:disabled {
|
92
|
+
border: 1px solid #f3f3f3;
|
93
|
+
color: #d3d3d3; }
|
94
|
+
.mo-web-input.mo-web-input--invalid {
|
95
|
+
border: 1px solid #f62b0f; }
|
96
|
+
|
97
|
+
.mo-web-form[data-errors='true'] .mo-web-input {
|
98
|
+
border: 1px solid #f62b0f; }
|
99
|
+
|
100
|
+
.mo-web-button {
|
101
|
+
display: inline-block;
|
102
|
+
padding: 0 30px;
|
103
|
+
height: 44px;
|
104
|
+
text-align: center;
|
105
|
+
font-family: "Gotham Book", "Moda-Gotham-Book", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
106
|
+
font-size: 12px;
|
107
|
+
line-height: 44px;
|
108
|
+
cursor: pointer;
|
109
|
+
border-radius: 0;
|
110
|
+
border: none;
|
111
|
+
outline: 0; }
|
112
|
+
.mo-web-button.mo-web-button--claret {
|
113
|
+
color: #ffffff;
|
114
|
+
background-color: #3c1315;
|
115
|
+
text-transform: uppercase; }
|
116
|
+
.mo-web-button.mo-web-button--primary {
|
117
|
+
color: #ffffff;
|
118
|
+
background-color: #222222;
|
119
|
+
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.05);
|
120
|
+
padding: 12px 20px;
|
121
|
+
line-height: 20px;
|
122
|
+
text-transform: uppercase; }
|
123
|
+
.mo-web-button.mo-web-button--primary:hover {
|
124
|
+
background-color: #434343; }
|
125
|
+
.mo-web-button.mo-web-button--primary:focus {
|
126
|
+
outline: 1px solid #222222;
|
127
|
+
outline-offset: 1px; }
|
128
|
+
.mo-web-button.mo-web-button--primary:active {
|
129
|
+
background-color: #626262; }
|
130
|
+
.mo-web-button.mo-web-button--primary:disabled {
|
131
|
+
background-color: #efefef;
|
132
|
+
color: #626262; }
|
133
|
+
.mo-web-button.mo-web-button--secondary {
|
134
|
+
color: #222222;
|
135
|
+
background-color: #ffffff;
|
136
|
+
border: 1px solid #222222;
|
137
|
+
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.05);
|
138
|
+
padding: 12px 20px;
|
139
|
+
line-height: 20px;
|
140
|
+
text-transform: uppercase; }
|
141
|
+
.mo-web-button.mo-web-button--secondary:hover {
|
142
|
+
background-color: #f5f5f5; }
|
143
|
+
.mo-web-button.mo-web-button--secondary:focus {
|
144
|
+
outline: 1px solid #222222;
|
145
|
+
outline-offset: 1px; }
|
146
|
+
.mo-web-button.mo-web-button--secondary:active {
|
147
|
+
background-color: #efefef; }
|
148
|
+
.mo-web-button.mo-web-button--secondary:disabled {
|
149
|
+
background-color: #ffffff;
|
150
|
+
color: #bebebe;
|
151
|
+
border-color: #e1e1e1; }
|
152
|
+
.mo-web-button .mo-web-button-loader {
|
153
|
+
margin-top: 3px; }
|
154
|
+
|
155
|
+
.mo-web-divider {
|
156
|
+
width: 100%;
|
157
|
+
height: 1px;
|
158
|
+
margin: 20px 0;
|
159
|
+
border-bottom: 1px solid #d3d3d3; }
|
160
|
+
|
161
|
+
.mo-web-oauth-buttons .mo-web-oauth-button {
|
162
|
+
width: 100%;
|
163
|
+
padding: 0; }
|
164
|
+
.mo-web-oauth-buttons .mo-web-oauth-button--amazon {
|
165
|
+
background-color: #f90; }
|
166
|
+
.mo-web-oauth-buttons .mo-web-oauth-button--amazon:hover, .mo-web-oauth-buttons .mo-web-oauth-button--amazon:focus {
|
167
|
+
background-color: #f90; }
|
168
|
+
.mo-web-oauth-buttons .mo-web-oauth-button--facebook {
|
169
|
+
background-color: #3b5798; }
|
170
|
+
.mo-web-oauth-buttons .mo-web-oauth-button--facebook:hover, .mo-web-oauth-buttons .mo-web-oauth-button--facebook:focus {
|
171
|
+
background-color: #3b5798; }
|
172
|
+
.mo-web-oauth-buttons .mo-web-oauth-button--facebook i {
|
173
|
+
background: #2f4d8e; }
|
174
|
+
.mo-web-oauth-buttons .mo-web-oauth-button i {
|
175
|
+
float: left;
|
176
|
+
font-size: 20px;
|
177
|
+
height: 100%;
|
178
|
+
width: 40px; }
|
179
|
+
|
180
|
+
.mo-web-oauth-buttons .amazon-info {
|
181
|
+
margin: 15px 0;
|
182
|
+
color: #9a9a9a;
|
183
|
+
line-height: 18px;
|
184
|
+
font-size: 11px; }
|
185
|
+
|
186
|
+
.mo-web-authentication-form .authentication-title {
|
187
|
+
font-family: "Miller Headline Light", "miller-headline-light", Georgia, "Times New Roman", Times, serif;
|
188
|
+
font-size: 22px;
|
189
|
+
margin-bottom: 8px; }
|
190
|
+
|
191
|
+
.mo-web-authentication-form .authentication-description {
|
192
|
+
font-family: "Miller Headline Light", "miller-headline-light", Georgia, "Times New Roman", Times, serif;
|
193
|
+
letter-spacing: 0.03em;
|
194
|
+
font-size: 14px;
|
195
|
+
line-height: 18px;
|
196
|
+
margin-bottom: 20px; }
|
197
|
+
.mo-web-authentication-form .authentication-description--email {
|
198
|
+
font-weight: bold; }
|
199
|
+
|
200
|
+
.mo-web-authentication-form .mo-web-form-field {
|
201
|
+
margin-bottom: 15px; }
|
202
|
+
|
203
|
+
.mo-web-authentication-form .authentication-name-input {
|
204
|
+
display: inline-block;
|
205
|
+
vertical-align: top;
|
206
|
+
width: calc(50% - 7px);
|
207
|
+
margin-right: 14px; }
|
208
|
+
.mo-web-authentication-form .authentication-name-input ~ .authentication-name-input {
|
209
|
+
margin-right: 0px; }
|
210
|
+
|
211
|
+
.mo-web-authentication-form .authentication-checkbox {
|
212
|
+
padding-left: 20px; }
|
213
|
+
.mo-web-authentication-form .authentication-checkbox input {
|
214
|
+
margin-left: -20px; }
|
215
|
+
|
216
|
+
.mo-web-authentication-form .authentication-remember-me {
|
217
|
+
color: #9a9a9a;
|
218
|
+
font-size: 11px;
|
219
|
+
float: left; }
|
220
|
+
|
221
|
+
.mo-web-authentication-form .authentication-opt-in {
|
222
|
+
display: inline-block;
|
223
|
+
color: #9a9a9a;
|
224
|
+
line-height: 16px;
|
225
|
+
font-size: 11px; }
|
226
|
+
.mo-web-authentication-form .authentication-opt-in--text {
|
227
|
+
display: inline-block;
|
228
|
+
margin-top: -16px; }
|
229
|
+
.mo-web-authentication-form .authentication-opt-in .mo-web-form-field {
|
230
|
+
margin-bottom: 0; }
|
231
|
+
|
232
|
+
.mo-web-authentication-form .authentication-forgot-password {
|
233
|
+
text-decoration: none;
|
234
|
+
float: right; }
|
235
|
+
|
236
|
+
.mo-web-authentication-form .authentication-submit-button {
|
237
|
+
margin-top: 10px;
|
238
|
+
width: 100%; }
|
239
|
+
|
240
|
+
.mo-web-authentication-form .authentication-privacy-policy {
|
241
|
+
text-decoration: none;
|
242
|
+
margin: 25px auto 0;
|
243
|
+
width: fit-content;
|
244
|
+
display: block; }
|
245
|
+
|
246
|
+
.mo-web-authentication-form .authentication-opt-out-privacy-policy {
|
247
|
+
font-family: "Gotham Book", "Moda-Gotham-Book", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
248
|
+
color: #222222;
|
249
|
+
width: fit-content;
|
250
|
+
margin: 0 auto;
|
251
|
+
font-size: 9px; }
|
252
|
+
.mo-web-authentication-form .authentication-opt-out-privacy-policy a {
|
253
|
+
margin: 10px auto 0;
|
254
|
+
width: fit-content;
|
255
|
+
font-size: 9px; }
|
256
|
+
|
257
|
+
.mo-web-authentication-form input[type='checkbox'] {
|
258
|
+
margin-right: 8px; }
|
259
|
+
|
260
|
+
.mo-web-link {
|
261
|
+
font-family: "Gotham Book", "Moda-Gotham-Book", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
262
|
+
font-size: 12px;
|
263
|
+
text-decoration: none; }
|
264
|
+
.mo-web-link.mo-web-link--blue {
|
265
|
+
color: #599ad3; }
|
266
|
+
.mo-web-link.mo-web-link--blue:hover {
|
267
|
+
color: #2f74b1; }
|
268
|
+
.mo-web-link.mo-web-link--gold {
|
269
|
+
color: #9b885f; }
|
270
|
+
.mo-web-link.mo-web-link--gold:hover {
|
271
|
+
color: #3c1315; }
|
272
|
+
.mo-web-link.mo-web-link--plain {
|
273
|
+
color: #222222; }
|
274
|
+
.mo-web-link.mo-web-link--plain:hover {
|
275
|
+
text-decoration: underline; }
|
276
|
+
.mo-web-link.mo-web-link--plain:focus {
|
277
|
+
outline: 1px solid #222222;
|
278
|
+
text-decoration: none; }
|
279
|
+
.mo-web-link.mo-web-link--plain:disabled {
|
280
|
+
color: #bebebe; }
|
281
|
+
.mo-web-link.mo-web-link--underline {
|
282
|
+
color: #222222;
|
283
|
+
text-decoration: underline; }
|
284
|
+
.mo-web-link.mo-web-link--underline:hover {
|
285
|
+
color: #767676; }
|
286
|
+
.mo-web-link.mo-web-link--underline:focus {
|
287
|
+
outline: 1px solid #222222; }
|
288
|
+
.mo-web-link.mo-web-link--underline:disabled {
|
289
|
+
color: #bebebe; }
|
290
|
+
|
291
|
+
@charset "UTF-8";
|
292
|
+
@font-face {
|
293
|
+
font-family: mo-web-icons;
|
294
|
+
src: url("data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAAVIAA0AAAAAB1wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAFLAAAABoAAAAch8mCKk9TLzIAAAGgAAAASQAAAGBP9ly5Y21hcAAAAgQAAABKAAABSuH1Ff9jdnQgAAACUAAAAAQAAAAEABEBRGdhc3AAAAUkAAAACAAAAAj//wADZ2x5ZgAAAmQAAAGYAAABzDxsY6xoZWFkAAABMAAAAC8AAAA2EhDrv2hoZWEAAAFgAAAAHQAAACQD4wHGaG10eAAAAewAAAAWAAAAFgQ6AJlsb2NhAAACVAAAAA4AAAAOAToAnm1heHAAAAGAAAAAHwAAACAATACgbmFtZQAAA/wAAADvAAAB8n01J5Vwb3N0AAAE7AAAADUAAABICCCDzXjaY2BkYGAA4jTG0FXx/DZfGbiZGEDgRsXVhXCa9/8Bxs+MB4BcDgawNAA6EwwsAHjaY2BkYGA88P8Agx4TAwgwfmZgZEAFrABiigOsAAAAeNpjYGRgYGBjyGdgYQABJiBmZACJOTDogQQADvQA7QB42mNgYZzBOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGAQYECEhzTWFoYFD4yMh44P8BBj3GAwwOIDVIShQYGAEk8QtSAAAAALsAEQAAAAAAqgAAAMgAAAIAAIgADQAAeNpjYGBgZoBgGQZGBhBwAfIYwXwWBg0gzQakGRmYGBQ+Mv7/D+QrfGT4////Y34WqHogYGRjgHMYmYAEEwMqYIRYMZwBAMWDCOcAAAARAUQAAAAqACoAKgAqAEoA5gAAeNoVkT9r21AUxe99/65kySIv1h8cbAWkRKIBJ0TPkkpjDG2zGFq6VHTLlAYCpUMJZPXor9DP0MneC/kYGTp26dCpa2n6tN177vmdM1xgoAHgK3bAgeB0i3C22JGA39VWyR+LHWd2hC3vZdnLO1L4d7HDXjfa6NLoXG/ub26w+/dNo7FpCJunn7jGBwjtEuWZmqKhPMrrvDb1vDEVrmdj/d5bfVitLqoT/P4mjJru8bFb1heWFzB8esA/lh/AW7iCzwDHdRaFKZqqbRJVnqoywDwr6vkS26WwmWVhW0jlZdEurStJZRjb1jCVSUwqaeKQesKemyQ2lWkKynprnMQWK/Dk2h0Np3p4Sa4kEpIrNjk7mj0fHcaD8eF+IR3/IJoK7r4cMq9rX+fSVYIzRMa54g46zvhckChuq821Uox/Wl99jIJWIA+eTYTcGwnxK7gMYj9N7pQUpCQJl0+ixhzMUlcqyYV77Osw9In5zXkmB4GzT7Ecs1vlD8gTHnoUvWLSEUflF8UZfzfXJLlLQtCLPfslgP+RrkOIeNqNjsFqwkAQhr+NURCClJ68CHsUYcNuPBQ99Cg99uQDKEFyMAtR8F18iL5En6Mv4FM4SabgoQUXhv+bmX9nBpjwheH3JcqGjJlywph35QFzrsqpeH6Uh7yYTHlEZt7EadKxTu3ZMBXqOeGVhfKATz6UU/F8Kw+x3JRHTM2sHXUk4rhQshOt2Etec5JGdJdy56p9rCX7w/DQ3XS1c6cNB/FaCnK86FrivyV9d0mQahuF/AisZGCsz5vYHEpb5N6u7eMxki6DC67wYfX0/VsxNFKuuraVPe2mvNP2SrZlc6pibb0PuffePjv5Du5ASTcAeNpjYGIAg/8HGCQZsAE2IGZkYGJgZmRiZObNTM7P001LTE5Nys/P5gbzEnMTq/LzAPNJC3IAAAAAAAAB//8AAnjaY2BgYGQAgmvXrz0H0Tcqri6E0QBjmwj4AAA=") format("woff");
|
295
|
+
font-weight: normal;
|
296
|
+
font-style: normal; }
|
297
|
+
|
298
|
+
.mo-web-icon-facebook:before {
|
299
|
+
content: "\F100";
|
300
|
+
speak: none;
|
301
|
+
font-style: normal;
|
302
|
+
font-weight: normal;
|
303
|
+
font-family: mo-web-icons; }
|
304
|
+
|
305
|
+
.mo-web-icon-amazon:before {
|
306
|
+
content: "\F101";
|
307
|
+
speak: none;
|
308
|
+
font-style: normal;
|
309
|
+
font-weight: normal;
|
310
|
+
font-family: mo-web-icons; }
|
311
|
+
|
312
|
+
.mo-web-login-modal {
|
313
|
+
width: 450px;
|
314
|
+
font-family: "Gotham Medium", "Moda-Gotham-Medium", "Helvetica Neue", Helvetica, Arial, sans-serif; }
|
315
|
+
.mo-web-login-modal .mo-web-modal-tab {
|
316
|
+
display: inline-block;
|
317
|
+
width: 50%;
|
318
|
+
height: 50px;
|
319
|
+
line-height: 50px;
|
320
|
+
text-align: center;
|
321
|
+
text-transform: uppercase;
|
322
|
+
font-size: 13px;
|
323
|
+
color: #444444;
|
324
|
+
background-color: #f3f3f3;
|
325
|
+
cursor: pointer; }
|
326
|
+
.mo-web-login-modal .mo-web-modal-tab.mo-web-modal-tab--active {
|
327
|
+
background-color: #ffffff; }
|
328
|
+
.mo-web-login-modal .mo-web-login-modal-content {
|
329
|
+
padding: 20px 75px 30px; }
|
330
|
+
.mo-web-login-modal .hide {
|
331
|
+
display: none; }
|
332
|
+
|
333
|
+
.mo-web-register-page {
|
334
|
+
width: 100vw;
|
335
|
+
height: auto; }
|
336
|
+
.mo-web-register-page .mo-web-login-modal {
|
337
|
+
margin: 100px auto;
|
338
|
+
width: 100%;
|
339
|
+
max-width: 900px;
|
340
|
+
text-align: center; }
|
341
|
+
.mo-web-register-page .mo-web-login-modal .mo-web-modal-tab {
|
342
|
+
display: none; }
|
343
|
+
.mo-web-register-page .mo-web-login-modal .mo-web-authentication-form {
|
344
|
+
display: inline-block;
|
345
|
+
text-align: left;
|
346
|
+
width: calc(50% - 101px);
|
347
|
+
vertical-align: top;
|
348
|
+
padding: 0px 50px; }
|
349
|
+
.mo-web-register-page .mo-web-login-modal .mo-web-authentication-form .authentication-opt-out-privacy-policy a {
|
350
|
+
display: inline; }
|
351
|
+
.mo-web-register-page .mo-web-login-modal .mo-web-authentication-form:first-child {
|
352
|
+
border-right: 1px solid #d3d3d3; }
|
353
|
+
@media screen and (max-width: 992px) {
|
354
|
+
.mo-web-register-page {
|
355
|
+
background: #f3f3f3;
|
356
|
+
font-size: 14px;
|
357
|
+
min-width: 320px;
|
358
|
+
max-width: 992px; }
|
359
|
+
.mo-web-register-page .mo-web-login-modal {
|
360
|
+
width: calc(100% - 40px);
|
361
|
+
padding: 20px 0 50px; }
|
362
|
+
.mo-web-register-page .mo-web-login-modal .mo-web-modal-tab {
|
363
|
+
display: inline-block; }
|
364
|
+
.mo-web-register-page .mo-web-login-modal .mo-web-login-modal-content {
|
365
|
+
padding: 25px;
|
366
|
+
background: #ffffff; }
|
367
|
+
.mo-web-register-page .mo-web-login-modal .mo-web-login-modal-content .mo-web-authentication-form {
|
368
|
+
display: none;
|
369
|
+
border: none; }
|
370
|
+
.mo-web-register-page .mo-web-login-modal .mo-web-login-modal-content .mo-web-authentication-form .authentication-title {
|
371
|
+
display: none; }
|
372
|
+
.mo-web-register-page .mo-web-login-modal .mo-web-login-modal-content .mo-web-authentication-form[data-active='true'] {
|
373
|
+
display: block;
|
374
|
+
width: 100%;
|
375
|
+
padding: 0px; }
|
376
|
+
.mo-web-register-page .mo-web-login-modal .mo-web-login-modal-content .mo-web-authentication-form .authentication-name-input {
|
377
|
+
display: block;
|
378
|
+
width: 100%; }
|
379
|
+
.mo-web-register-page .mo-web-login-modal .mo-web-login-modal-content .mo-web-authentication-form .authentication-checkbox {
|
380
|
+
display: table;
|
381
|
+
width: 100%; }
|
382
|
+
.mo-web-register-page .mo-web-login-modal .mo-web-login-modal-content .mo-web-authentication-form .authentication-checkbox.authentication-remember-me {
|
383
|
+
width: 50%; }
|
384
|
+
.mo-web-register-page .mo-web-login-modal .mo-web-login-modal-content .mo-web-authentication-form .authentication-checkbox span {
|
385
|
+
display: table-cell;
|
386
|
+
vertical-align: middle; } }
|
387
|
+
|
388
|
+
.size_chart_v2 {
|
389
|
+
position: relative; }
|
390
|
+
.size_chart_v2 .size_chart_header_v2 {
|
391
|
+
font-family: "Miller Headline Light", "miller-headline-light", Georgia, "Times New Roman", Times, serif;
|
392
|
+
text-transform: capitalize;
|
393
|
+
color: #222222;
|
394
|
+
margin-bottom: 12px;
|
395
|
+
font-size: 30px;
|
396
|
+
font-style: normal;
|
397
|
+
font-weight: normal;
|
398
|
+
line-height: 32px;
|
399
|
+
display: inline-block; }
|
400
|
+
.size_chart_v2 .size_chart_sub_v2 {
|
401
|
+
font-family: "Gotham Book", "Moda-Gotham-Book", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
402
|
+
font-size: 12px;
|
403
|
+
color: #434343;
|
404
|
+
display: block;
|
405
|
+
line-height: 20px;
|
406
|
+
margin-bottom: 28px;
|
407
|
+
font-weight: 300; }
|
408
|
+
@media screen and (max-width: 992px) {
|
409
|
+
.size_chart_v2 .size_chart_sub_v2 {
|
410
|
+
line-height: 16px;
|
411
|
+
display: block;
|
412
|
+
margin-bottom: 12px; } }
|
413
|
+
.size_chart_v2 .size_chart_sub_v2 .initial_v2, .size_chart_v2 .size_chart_sub_v2 .based_on_v2 {
|
414
|
+
display: block; }
|
415
|
+
.size_chart_v2 .size_chart_sub_v2 .initial_v2 .scale_v2, .size_chart_v2 .size_chart_sub_v2 .based_on_v2 .scale_v2 {
|
416
|
+
font-family: "Gotham Medium", "Moda-Gotham-Medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
417
|
+
display: inline; }
|
418
|
+
|
419
|
+
.size_chart_table_desktop_v2, .size_chart_table_mobile_v2 {
|
420
|
+
display: flex; }
|
421
|
+
.size_chart_table_desktop_v2 .top_container_v2, .size_chart_table_mobile_v2 .top_container_v2 {
|
422
|
+
display: grid;
|
423
|
+
text-align: center;
|
424
|
+
width: 100%; }
|
425
|
+
.size_chart_table_desktop_v2 .top_container_v2:first-of-type, .size_chart_table_mobile_v2 .top_container_v2:first-of-type {
|
426
|
+
background-color: #F3F3F3; }
|
427
|
+
.size_chart_table_desktop_v2 .top_container_v2 .header_v2, .size_chart_table_mobile_v2 .top_container_v2 .header_v2 {
|
428
|
+
font-family: "Gotham Medium", "Moda-Gotham-Medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
429
|
+
border-top: 1px solid #767676;
|
430
|
+
border-bottom: 1px solid #767676;
|
431
|
+
color: #222222;
|
432
|
+
font-size: 12px;
|
433
|
+
font-weight: 500;
|
434
|
+
line-height: 44px;
|
435
|
+
text-align: center; }
|
436
|
+
.size_chart_table_desktop_v2 .top_container_v2 .size_v2, .size_chart_table_mobile_v2 .top_container_v2 .size_v2 {
|
437
|
+
font-family: "Gotham Book", "Moda-Gotham-Book", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
438
|
+
display: block;
|
439
|
+
color: #434343;
|
440
|
+
font-size: 12px;
|
441
|
+
font-weight: 300;
|
442
|
+
line-height: 32px;
|
443
|
+
text-align: center;
|
444
|
+
width: 100%;
|
445
|
+
border-bottom: 1px solid #E1E1E1; }
|
446
|
+
|
447
|
+
.size_chart_table_mobile_v2 .top_container_v2 {
|
448
|
+
display: flex;
|
449
|
+
flex-direction: column;
|
450
|
+
justify-content: flex-end;
|
451
|
+
text-align: center;
|
452
|
+
width: 100%; }
|
453
|
+
.size_chart_table_mobile_v2 .top_container_v2:first-of-type {
|
454
|
+
background-color: unset; }
|
455
|
+
.size_chart_table_mobile_v2 .top_container_v2 .country_size_container_v2 {
|
456
|
+
position: relative; }
|
457
|
+
.size_chart_table_mobile_v2 .top_container_v2 .country_size_container_v2.chevron_v2:after {
|
458
|
+
border-style: solid;
|
459
|
+
border-width: 1px 1px 0 0;
|
460
|
+
content: '';
|
461
|
+
display: inline-block;
|
462
|
+
height: 5px;
|
463
|
+
width: 5px;
|
464
|
+
position: relative;
|
465
|
+
transform: rotate(135deg);
|
466
|
+
-o-transform: rotate(135deg);
|
467
|
+
-ms-transform: rotate(135deg);
|
468
|
+
-moz-transform: rotate(135deg);
|
469
|
+
-webkit-transform: rotate(135deg);
|
470
|
+
vertical-align: middle;
|
471
|
+
left: 15px;
|
472
|
+
bottom: 2px; }
|
473
|
+
.size_chart_table_mobile_v2 .top_container_v2 .country_size_container_v2.chevron-up_v2:after {
|
474
|
+
bottom: 0px;
|
475
|
+
transform: rotate(-45deg);
|
476
|
+
-o-transform: rotate(-45deg);
|
477
|
+
-ms-transform: rotate(-45deg);
|
478
|
+
-moz-transform: rotate(-45deg);
|
479
|
+
-webkit-transform: rotate(-45deg); }
|
480
|
+
|
481
|
+
.size_chart_table_mobile_v2 ul.size_chart_mobile_dropdown_v2 {
|
482
|
+
display: none;
|
483
|
+
list-style: none;
|
484
|
+
padding: 0;
|
485
|
+
background: #ffffff;
|
486
|
+
width: 100%;
|
487
|
+
border: 1px solid #eeeeee;
|
488
|
+
border-top: 1px solid #767676;
|
489
|
+
position: absolute; }
|
490
|
+
.size_chart_table_mobile_v2 ul.size_chart_mobile_dropdown_v2.open_v2 {
|
491
|
+
display: block;
|
492
|
+
position: absolute;
|
493
|
+
width: 100%; }
|
494
|
+
.size_chart_table_mobile_v2 ul.size_chart_mobile_dropdown_v2 li {
|
495
|
+
line-height: 32px; }
|
496
|
+
|
@@ -100,11 +100,11 @@
|
|
100
100
|
.mo-web-button {
|
101
101
|
display: inline-block;
|
102
102
|
padding: 0 30px;
|
103
|
-
height:
|
103
|
+
height: 44px;
|
104
104
|
text-align: center;
|
105
|
-
font-family: "Gotham
|
106
|
-
font-size:
|
107
|
-
line-height:
|
105
|
+
font-family: "Gotham Book", "Moda-Gotham-Book", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
106
|
+
font-size: 12px;
|
107
|
+
line-height: 44px;
|
108
108
|
cursor: pointer;
|
109
109
|
border-radius: 0;
|
110
110
|
border: none;
|
@@ -113,8 +113,42 @@
|
|
113
113
|
color: #ffffff;
|
114
114
|
background-color: #3c1315;
|
115
115
|
text-transform: uppercase; }
|
116
|
-
|
117
|
-
|
116
|
+
.mo-web-button.mo-web-button--primary {
|
117
|
+
color: #ffffff;
|
118
|
+
background-color: #222222;
|
119
|
+
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.05);
|
120
|
+
padding: 12px 20px;
|
121
|
+
line-height: 20px;
|
122
|
+
text-transform: uppercase; }
|
123
|
+
.mo-web-button.mo-web-button--primary:hover {
|
124
|
+
background-color: #434343; }
|
125
|
+
.mo-web-button.mo-web-button--primary:focus {
|
126
|
+
outline: 1px solid #222222;
|
127
|
+
outline-offset: 1px; }
|
128
|
+
.mo-web-button.mo-web-button--primary:active {
|
129
|
+
background-color: #626262; }
|
130
|
+
.mo-web-button.mo-web-button--primary:disabled {
|
131
|
+
background-color: #efefef;
|
132
|
+
color: #626262; }
|
133
|
+
.mo-web-button.mo-web-button--secondary {
|
134
|
+
color: #222222;
|
135
|
+
background-color: #ffffff;
|
136
|
+
border: 1px solid #222222;
|
137
|
+
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.05);
|
138
|
+
padding: 12px 20px;
|
139
|
+
line-height: 20px;
|
140
|
+
text-transform: uppercase; }
|
141
|
+
.mo-web-button.mo-web-button--secondary:hover {
|
142
|
+
background-color: #f5f5f5; }
|
143
|
+
.mo-web-button.mo-web-button--secondary:focus {
|
144
|
+
outline: 1px solid #222222;
|
145
|
+
outline-offset: 1px; }
|
146
|
+
.mo-web-button.mo-web-button--secondary:active {
|
147
|
+
background-color: #efefef; }
|
148
|
+
.mo-web-button.mo-web-button--secondary:disabled {
|
149
|
+
background-color: #ffffff;
|
150
|
+
color: #bebebe;
|
151
|
+
border-color: #e1e1e1; }
|
118
152
|
.mo-web-button .mo-web-button-loader {
|
119
153
|
margin-top: 3px; }
|
120
154
|
|
@@ -197,9 +231,6 @@
|
|
197
231
|
|
198
232
|
.mo-web-authentication-form .authentication-forgot-password {
|
199
233
|
text-decoration: none;
|
200
|
-
color: #428bca;
|
201
|
-
margin-top: 3.5px;
|
202
|
-
font-size: 11px;
|
203
234
|
float: right; }
|
204
235
|
|
205
236
|
.mo-web-authentication-form .authentication-submit-button {
|
@@ -210,25 +241,53 @@
|
|
210
241
|
text-decoration: none;
|
211
242
|
margin: 25px auto 0;
|
212
243
|
width: fit-content;
|
213
|
-
color: #428bca;
|
214
|
-
font-size: 11px;
|
215
244
|
display: block; }
|
216
245
|
|
217
246
|
.mo-web-authentication-form .authentication-opt-out-privacy-policy {
|
218
247
|
font-family: "Gotham Book", "Moda-Gotham-Book", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
219
|
-
color: #
|
248
|
+
color: #222222;
|
220
249
|
width: fit-content;
|
221
|
-
|
222
|
-
|
250
|
+
margin: 0 auto;
|
251
|
+
font-size: 9px; }
|
223
252
|
.mo-web-authentication-form .authentication-opt-out-privacy-policy a {
|
224
|
-
color: #428bca;
|
225
253
|
margin: 10px auto 0;
|
226
254
|
width: fit-content;
|
227
|
-
|
255
|
+
font-size: 9px; }
|
228
256
|
|
229
257
|
.mo-web-authentication-form input[type='checkbox'] {
|
230
258
|
margin-right: 8px; }
|
231
259
|
|
260
|
+
.mo-web-link {
|
261
|
+
font-family: "Gotham Book", "Moda-Gotham-Book", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
262
|
+
font-size: 12px;
|
263
|
+
text-decoration: none; }
|
264
|
+
.mo-web-link.mo-web-link--blue {
|
265
|
+
color: #599ad3; }
|
266
|
+
.mo-web-link.mo-web-link--blue:hover {
|
267
|
+
color: #2f74b1; }
|
268
|
+
.mo-web-link.mo-web-link--gold {
|
269
|
+
color: #9b885f; }
|
270
|
+
.mo-web-link.mo-web-link--gold:hover {
|
271
|
+
color: #3c1315; }
|
272
|
+
.mo-web-link.mo-web-link--plain {
|
273
|
+
color: #222222; }
|
274
|
+
.mo-web-link.mo-web-link--plain:hover {
|
275
|
+
text-decoration: underline; }
|
276
|
+
.mo-web-link.mo-web-link--plain:focus {
|
277
|
+
outline: 1px solid #222222;
|
278
|
+
text-decoration: none; }
|
279
|
+
.mo-web-link.mo-web-link--plain:disabled {
|
280
|
+
color: #bebebe; }
|
281
|
+
.mo-web-link.mo-web-link--underline {
|
282
|
+
color: #222222;
|
283
|
+
text-decoration: underline; }
|
284
|
+
.mo-web-link.mo-web-link--underline:hover {
|
285
|
+
color: #767676; }
|
286
|
+
.mo-web-link.mo-web-link--underline:focus {
|
287
|
+
outline: 1px solid #222222; }
|
288
|
+
.mo-web-link.mo-web-link--underline:disabled {
|
289
|
+
color: #bebebe; }
|
290
|
+
|
232
291
|
@charset "UTF-8";
|
233
292
|
@font-face {
|
234
293
|
font-family: mo-web-icons;
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: modalibrary
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.27
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Team Moda
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-04-
|
11
|
+
date: 2019-04-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -59,6 +59,7 @@ files:
|
|
59
59
|
- vendor/.DS_Store
|
60
60
|
- vendor/assets/javascripts/mo-display.min.js
|
61
61
|
- vendor/assets/javascripts/web_library.min.js
|
62
|
+
- vendor/assets/main.css
|
62
63
|
- vendor/assets/stylesheets/mo-display.css
|
63
64
|
- vendor/assets/stylesheets/web_library.css
|
64
65
|
homepage: https://www.modaoperandi.com
|
@@ -81,7 +82,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
82
|
version: '0'
|
82
83
|
requirements: []
|
83
84
|
rubyforge_project:
|
84
|
-
rubygems_version: 2.6.
|
85
|
+
rubygems_version: 2.6.14
|
85
86
|
signing_key:
|
86
87
|
specification_version: 4
|
87
88
|
summary: Moda library, GEMIFIED!
|