metro_ui_rails 0.1.0

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.
Files changed (73) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +37 -0
  4. data/app/assets/fonts/7xkFOeTxxO1GMC1suOUYWWhBabBbEjGd1iRmpyoZukE.woff +0 -0
  5. data/app/assets/fonts/DXI1ORHCpsQm3Vp6mXoaTZ1r3JsPcQLi8jytr04NNhU.woff +0 -0
  6. data/app/assets/fonts/K88pR3goAWT7BTt32Z01mz8E0i7KZn-EPnyo3HZu7kw.woff +0 -0
  7. data/app/assets/fonts/k3k702ZOKiLJc3WVjuplzJ1r3JsPcQLi8jytr04NNhU.woff +0 -0
  8. data/app/assets/fonts/metro.eot +0 -0
  9. data/app/assets/fonts/metro.svg +542 -0
  10. data/app/assets/fonts/metro.ttf +0 -0
  11. data/app/assets/fonts/metro.woff +0 -0
  12. data/app/assets/fonts/selection.json +13870 -0
  13. data/app/assets/javascripts/metro.js +10745 -0
  14. data/app/assets/javascripts/metro.min.js +12 -0
  15. data/app/assets/javascripts/metro_ui_rails/application.js +13 -0
  16. data/app/assets/stylesheets/metro-icons.min.scss +1 -0
  17. data/app/assets/stylesheets/metro-icons.scss +6447 -0
  18. data/app/assets/stylesheets/metro-responsive.css +720 -0
  19. data/app/assets/stylesheets/metro-responsive.min.css +1 -0
  20. data/app/assets/stylesheets/metro-rtl.css +130 -0
  21. data/app/assets/stylesheets/metro-rtl.min.css +1 -0
  22. data/app/assets/stylesheets/metro-schemes.css +1329 -0
  23. data/app/assets/stylesheets/metro-schemes.min.css +1 -0
  24. data/app/assets/stylesheets/metro-ui.scss +5 -0
  25. data/app/assets/stylesheets/metro.min.css +1 -0
  26. data/app/assets/stylesheets/metro.scss +18511 -0
  27. data/app/assets/stylesheets/metro_ui_rails/application.scss +16 -0
  28. data/app/controllers/metro_ui_rails/application_controller.rb +4 -0
  29. data/app/helpers/metro_ui_rails/application_helper.rb +4 -0
  30. data/app/views/layouts/metro_ui_rails/application.html.erb +14 -0
  31. data/config/routes.rb +2 -0
  32. data/lib/metro_ui_rails.rb +4 -0
  33. data/lib/metro_ui_rails/engine.rb +14 -0
  34. data/lib/metro_ui_rails/version.rb +3 -0
  35. data/lib/tasks/metro_ui_rails_tasks.rake +4 -0
  36. data/test/dummy/README.rdoc +28 -0
  37. data/test/dummy/Rakefile +6 -0
  38. data/test/dummy/app/assets/javascripts/application.js +13 -0
  39. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  40. data/test/dummy/app/controllers/application_controller.rb +5 -0
  41. data/test/dummy/app/helpers/application_helper.rb +2 -0
  42. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  43. data/test/dummy/bin/bundle +3 -0
  44. data/test/dummy/bin/rails +4 -0
  45. data/test/dummy/bin/rake +4 -0
  46. data/test/dummy/bin/setup +29 -0
  47. data/test/dummy/config.ru +4 -0
  48. data/test/dummy/config/application.rb +26 -0
  49. data/test/dummy/config/boot.rb +5 -0
  50. data/test/dummy/config/database.yml +25 -0
  51. data/test/dummy/config/environment.rb +5 -0
  52. data/test/dummy/config/environments/development.rb +41 -0
  53. data/test/dummy/config/environments/production.rb +79 -0
  54. data/test/dummy/config/environments/test.rb +42 -0
  55. data/test/dummy/config/initializers/assets.rb +11 -0
  56. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  57. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  58. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  59. data/test/dummy/config/initializers/inflections.rb +16 -0
  60. data/test/dummy/config/initializers/mime_types.rb +4 -0
  61. data/test/dummy/config/initializers/session_store.rb +3 -0
  62. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  63. data/test/dummy/config/locales/en.yml +23 -0
  64. data/test/dummy/config/routes.rb +4 -0
  65. data/test/dummy/config/secrets.yml +22 -0
  66. data/test/dummy/public/404.html +67 -0
  67. data/test/dummy/public/422.html +67 -0
  68. data/test/dummy/public/500.html +66 -0
  69. data/test/dummy/public/favicon.ico +0 -0
  70. data/test/integration/navigation_test.rb +8 -0
  71. data/test/metro_ui_rails_test.rb +7 -0
  72. data/test/test_helper.rb +21 -0
  73. metadata +166 -0
@@ -0,0 +1,720 @@
1
+ .flexbox {
2
+ display: -webkit-flex;
3
+ display: flex;
4
+ }
5
+ .flex-dir-row {
6
+ -webkit-flex-direction: row;
7
+ flex-direction: row;
8
+ }
9
+ .flex-dir-row-reverse {
10
+ -webkit-flex-direction: row-reverse;
11
+ flex-direction: row-reverse;
12
+ }
13
+ .flex-dir-column {
14
+ -webkit-flex-direction: column;
15
+ flex-direction: column;
16
+ }
17
+ .flex-dir-column-reverse {
18
+ -webkit-flex-direction: column-reverse;
19
+ flex-direction: column-reverse;
20
+ }
21
+ .flex-wrap {
22
+ -webkit-flex-wrap: wrap;
23
+ flex-wrap: wrap;
24
+ }
25
+ .flex-wrap-reverse {
26
+ -webkit-flex-wrap: wrap-reverse;
27
+ flex-wrap: wrap-reverse;
28
+ }
29
+ .flex-no-wrap {
30
+ -webkit-flex-wrap: nowrap;
31
+ flex-wrap: nowrap;
32
+ }
33
+ .flex-just-start {
34
+ -webkit-justify-content: flex-start;
35
+ justify-content: flex-start;
36
+ }
37
+ .flex-just-end {
38
+ -webkit-justify-content: flex-end;
39
+ justify-content: flex-end;
40
+ }
41
+ .flex-just-center {
42
+ -webkit-justify-content: center;
43
+ justify-content: center;
44
+ }
45
+ .flex-just-sa {
46
+ -webkit-justify-content: space-around;
47
+ justify-content: space-around;
48
+ }
49
+ .flex-just-sb {
50
+ -webkit-justify-content: space-between;
51
+ justify-content: space-between;
52
+ }
53
+ .flex-align-stretch {
54
+ -webkit-align-items: stretch;
55
+ align-items: stretch;
56
+ }
57
+ .flex-align-start {
58
+ -webkit-align-items: flex-start;
59
+ align-items: flex-start;
60
+ }
61
+ .flex-align-end {
62
+ -webkit-align-items: flex-end;
63
+ align-items: flex-end;
64
+ }
65
+ .flex-align-center {
66
+ -webkit-align-items: center;
67
+ align-items: center;
68
+ }
69
+ .flex-align-base {
70
+ -webkit-align-items: baseline;
71
+ align-items: baseline;
72
+ }
73
+ .flex-content-stretch {
74
+ -webkit-align-content: stretch;
75
+ align-content: stretch;
76
+ }
77
+ .flex-content-start {
78
+ -webkit-align-content: flex-start;
79
+ align-content: flex-start;
80
+ }
81
+ .flex-content-end {
82
+ -webkit-align-content: flex-end;
83
+ align-content: flex-end;
84
+ }
85
+ .flex-content-center {
86
+ -webkit-align-content: center;
87
+ align-content: center;
88
+ }
89
+ .flex-content-sb {
90
+ -webkit-align-content: space-between;
91
+ align-content: space-between;
92
+ }
93
+ .flex-content-sa {
94
+ -webkit-align-content: space-around;
95
+ align-content: space-around;
96
+ }
97
+ .flex-self-auto {
98
+ -webkit-align-self: auto;
99
+ align-self: auto;
100
+ }
101
+ .flex-self-start {
102
+ -webkit-align-self: flex-start;
103
+ align-self: flex-start;
104
+ }
105
+ .flex-self-end {
106
+ -webkit-align-self: flex-end;
107
+ align-self: flex-end;
108
+ }
109
+ .flex-self-center {
110
+ -webkit-align-self: center;
111
+ align-self: center;
112
+ }
113
+ .flex-self-base {
114
+ -webkit-align-self: baseline;
115
+ align-self: baseline;
116
+ }
117
+ .flex-self-stretch {
118
+ -webkit-align-self: stretch;
119
+ align-self: stretch;
120
+ }
121
+ .no-shrink {
122
+ -webkit-flex-shrink: 0 !important;
123
+ flex-shrink: 0 !important;
124
+ }
125
+ .no-grow {
126
+ -webkit-flex-grow: 0 !important;
127
+ flex-grow: 0 !important;
128
+ }
129
+ .flex-size-auto {
130
+ -webkit-flex: 1 auto;
131
+ flex: 1 auto;
132
+ }
133
+ .flex-size1 {
134
+ -webkit-flex-grow: 1;
135
+ flex-grow: 1;
136
+ }
137
+ .flex-size2 {
138
+ -webkit-flex-grow: 2;
139
+ flex-grow: 2;
140
+ }
141
+ .flex-size3 {
142
+ -webkit-flex-grow: 3;
143
+ flex-grow: 3;
144
+ }
145
+ .flex-size4 {
146
+ -webkit-flex-grow: 4;
147
+ flex-grow: 4;
148
+ }
149
+ .flex-size5 {
150
+ -webkit-flex-grow: 5;
151
+ flex-grow: 5;
152
+ }
153
+ .flex-size6 {
154
+ -webkit-flex-grow: 6;
155
+ flex-grow: 6;
156
+ }
157
+ .flex-size7 {
158
+ -webkit-flex-grow: 7;
159
+ flex-grow: 7;
160
+ }
161
+ .flex-size8 {
162
+ -webkit-flex-grow: 8;
163
+ flex-grow: 8;
164
+ }
165
+ .flex-size9 {
166
+ -webkit-flex-grow: 9;
167
+ flex-grow: 9;
168
+ }
169
+ .flex-size10 {
170
+ -webkit-flex-grow: 10;
171
+ flex-grow: 10;
172
+ }
173
+ .flex-size11 {
174
+ -webkit-flex-grow: 11;
175
+ flex-grow: 11;
176
+ }
177
+ .flex-size12 {
178
+ -webkit-flex-grow: 12;
179
+ flex-grow: 12;
180
+ }
181
+ .flex-size-p10 {
182
+ -webkit-flex: 0 0 10%;
183
+ flex: 0 0 10%;
184
+ }
185
+ .flex-size-p20 {
186
+ -webkit-flex: 0 0 20%;
187
+ flex: 0 0 20%;
188
+ }
189
+ .flex-size-p30 {
190
+ -webkit-flex: 0 0 30%;
191
+ flex: 0 0 30%;
192
+ }
193
+ .flex-size-p40 {
194
+ -webkit-flex: 0 0 40%;
195
+ flex: 0 0 40%;
196
+ }
197
+ .flex-size-p50 {
198
+ -webkit-flex: 0 0 50%;
199
+ flex: 0 0 50%;
200
+ }
201
+ .flex-size-p60 {
202
+ -webkit-flex: 0 0 60%;
203
+ flex: 0 0 60%;
204
+ }
205
+ .flex-size-p70 {
206
+ -webkit-flex: 0 0 70%;
207
+ flex: 0 0 70%;
208
+ }
209
+ .flex-size-p80 {
210
+ -webkit-flex: 0 0 80%;
211
+ flex: 0 0 80%;
212
+ }
213
+ .flex-size-p90 {
214
+ -webkit-flex: 0 0 90%;
215
+ flex: 0 0 90%;
216
+ }
217
+ .flex-size-p100 {
218
+ -webkit-flex: 0 0 100%;
219
+ flex: 0 0 100%;
220
+ }
221
+ .flex-size-x100 {
222
+ -webkit-flex: 0 0 100px;
223
+ flex: 0 0 100px;
224
+ }
225
+ .flex-size-x200 {
226
+ -webkit-flex: 0 0 200px;
227
+ flex: 0 0 200px;
228
+ }
229
+ .flex-size-x300 {
230
+ -webkit-flex: 0 0 300px;
231
+ flex: 0 0 300px;
232
+ }
233
+ .flex-size-x400 {
234
+ -webkit-flex: 0 0 400px;
235
+ flex: 0 0 400px;
236
+ }
237
+ .flex-size-x500 {
238
+ -webkit-flex: 0 0 500px;
239
+ flex: 0 0 500px;
240
+ }
241
+ .flex-size-x600 {
242
+ -webkit-flex: 0 0 600px;
243
+ flex: 0 0 600px;
244
+ }
245
+ .flex-size-x700 {
246
+ -webkit-flex: 0 0 700px;
247
+ flex: 0 0 700px;
248
+ }
249
+ .flex-size-x800 {
250
+ -webkit-flex: 0 0 800px;
251
+ flex: 0 0 800px;
252
+ }
253
+ .flex-size-x900 {
254
+ -webkit-flex: 0 0 900px;
255
+ flex: 0 0 900px;
256
+ }
257
+ .flex-size-x1000 {
258
+ -webkit-flex: 0 0 1000px;
259
+ flex: 0 0 1000px;
260
+ }
261
+ @media screen and (min-width: 1401px) {
262
+ html {
263
+ font-size: 120%;
264
+ }
265
+ }
266
+ @media screen and (max-width: 1400px) {
267
+ html {
268
+ font-size: 110%;
269
+ }
270
+ }
271
+ @media screen and (max-width: 1200px) {
272
+ html {
273
+ font-size: 100%;
274
+ }
275
+ }
276
+ @media screen and (max-width: 768px) {
277
+ html {
278
+ font-size: 100%;
279
+ }
280
+ }
281
+ @media screen and (max-width: 640px) {
282
+ html {
283
+ font-size: 90%;
284
+ }
285
+ }
286
+ @media screen and (max-width: 320px) {
287
+ html {
288
+ font-size: 80%;
289
+ }
290
+ }
291
+ @media screen and (max-width: 800px) {
292
+ h1,
293
+ h2,
294
+ h3,
295
+ h4,
296
+ h5,
297
+ h6,
298
+ p {
299
+ margin: .625rem;
300
+ }
301
+ }
302
+ @media screen and (min-width: 1401px) {
303
+ .container {
304
+ width: 1200px;
305
+ }
306
+ }
307
+ @media screen and (max-width: 992px) {
308
+ .container {
309
+ width: 100%;
310
+ padding: 10px;
311
+ }
312
+ }
313
+ @media screen and (max-width: 768px) {
314
+ .container {
315
+ width: 100%;
316
+ padding: 10px;
317
+ }
318
+ }
319
+ @media screen and (max-width: 640px) {
320
+ .container {
321
+ width: 100%;
322
+ padding: 10px;
323
+ }
324
+ }
325
+ @media screen and (max-width: 320px) {
326
+ .container {
327
+ width: 100%;
328
+ padding: 5px;
329
+ }
330
+ }
331
+ @media only screen and (max-width: 800px) {
332
+ .flex-grid .row {
333
+ -webkit-flex-wrap: wrap;
334
+ flex-wrap: wrap;
335
+ }
336
+ .flex-grid .row .cell,
337
+ .flex-grid .row .cell[class*=size] {
338
+ -webkit-flex: 0 0 50%;
339
+ flex: 0 0 50%;
340
+ }
341
+ .flex-grid .row .cell:nth-child(1):last-child,
342
+ .flex-grid .row .cell[class*=size]:nth-child(1):last-child,
343
+ .flex-grid .row .cell:nth-child(3):last-child,
344
+ .flex-grid .row .cell[class*=size]:nth-child(3):last-child,
345
+ .flex-grid .row .cell:nth-child(5):last-child,
346
+ .flex-grid .row .cell[class*=size]:nth-child(5):last-child,
347
+ .flex-grid .row .cell:nth-child(7):last-child,
348
+ .flex-grid .row .cell[class*=size]:nth-child(7):last-child,
349
+ .flex-grid .row .cell:nth-child(9):last-child,
350
+ .flex-grid .row .cell[class*=size]:nth-child(9):last-child,
351
+ .flex-grid .row .cell:nth-child(11):last-child,
352
+ .flex-grid .row .cell[class*=size]:nth-child(11):last-child {
353
+ -webkit-flex-basis: 100%;
354
+ flex-basis: 100%;
355
+ }
356
+ }
357
+ @media only screen and (max-width: 640px) {
358
+ .flex-grid .row {
359
+ -webkit-flex-direction: column;
360
+ flex-direction: column;
361
+ }
362
+ }
363
+ @media screen and (max-width: 800px) {
364
+ .grid .row,
365
+ .grid .row[class*=cells] {
366
+ margin: 0;
367
+ }
368
+ .grid .row > .cell,
369
+ .grid .row[class*=cells] > .cell,
370
+ .grid .row > .cell[class*=colspan],
371
+ .grid .row[class*=cells] > .cell[class*=colspan] {
372
+ width: 48.936175% ;
373
+ margin-bottom: 10px;
374
+ }
375
+ .grid .row > .cell:nth-child(odd),
376
+ .grid .row[class*=cells] > .cell:nth-child(odd),
377
+ .grid .row > .cell[class*=colspan]:nth-child(odd),
378
+ .grid .row[class*=cells] > .cell[class*=colspan]:nth-child(odd) {
379
+ margin-left: 0;
380
+ }
381
+ .grid .row > .cell:nth-child(1):last-child,
382
+ .grid .row[class*=cells] > .cell:nth-child(1):last-child,
383
+ .grid .row > .cell[class*=colspan]:nth-child(1):last-child,
384
+ .grid .row[class*=cells] > .cell[class*=colspan]:nth-child(1):last-child,
385
+ .grid .row > .cell:nth-child(3):last-child,
386
+ .grid .row[class*=cells] > .cell:nth-child(3):last-child,
387
+ .grid .row > .cell[class*=colspan]:nth-child(3):last-child,
388
+ .grid .row[class*=cells] > .cell[class*=colspan]:nth-child(3):last-child,
389
+ .grid .row > .cell:nth-child(5):last-child,
390
+ .grid .row[class*=cells] > .cell:nth-child(5):last-child,
391
+ .grid .row > .cell[class*=colspan]:nth-child(5):last-child,
392
+ .grid .row[class*=cells] > .cell[class*=colspan]:nth-child(5):last-child,
393
+ .grid .row > .cell:nth-child(7):last-child,
394
+ .grid .row[class*=cells] > .cell:nth-child(7):last-child,
395
+ .grid .row > .cell[class*=colspan]:nth-child(7):last-child,
396
+ .grid .row[class*=cells] > .cell[class*=colspan]:nth-child(7):last-child,
397
+ .grid .row > .cell:nth-child(9):last-child,
398
+ .grid .row[class*=cells] > .cell:nth-child(9):last-child,
399
+ .grid .row > .cell[class*=colspan]:nth-child(9):last-child,
400
+ .grid .row[class*=cells] > .cell[class*=colspan]:nth-child(9):last-child,
401
+ .grid .row > .cell:nth-child(11):last-child,
402
+ .grid .row[class*=cells] > .cell:nth-child(11):last-child,
403
+ .grid .row > .cell[class*=colspan]:nth-child(11):last-child,
404
+ .grid .row[class*=cells] > .cell[class*=colspan]:nth-child(11):last-child {
405
+ width: 100%;
406
+ }
407
+ }
408
+ @media screen and (max-width: 640px) {
409
+ .grid .row,
410
+ .grid .row[class*=cells] {
411
+ margin: 0;
412
+ }
413
+ .grid .row > .cell,
414
+ .grid .row[class*=cells] > .cell,
415
+ .grid .row > .cell[class*=colspan],
416
+ .grid .row[class*=cells] > .cell[class*=colspan] {
417
+ width: 100%;
418
+ margin: .3125rem 0;
419
+ }
420
+ }
421
+ @media screen and (max-width: 800px) {
422
+ .grid.condensed .row,
423
+ .grid.condensed .row[class*=cells] {
424
+ margin: 0;
425
+ }
426
+ .grid.condensed .row > .cell,
427
+ .grid.condensed .row[class*=cells] > .cell,
428
+ .grid.condensed .row > .cell[class*=colspan],
429
+ .grid.condensed .row[class*=cells] > .cell[class*=colspan] {
430
+ width: 50% ;
431
+ margin-bottom: 10px ;
432
+ }
433
+ .grid.condensed .row > .cell:nth-child(odd),
434
+ .grid.condensed .row[class*=cells] > .cell:nth-child(odd),
435
+ .grid.condensed .row > .cell[class*=colspan]:nth-child(odd),
436
+ .grid.condensed .row[class*=cells] > .cell[class*=colspan]:nth-child(odd) {
437
+ margin-left: 0;
438
+ }
439
+ .grid.condensed .row > .cell:nth-child(1):last-child,
440
+ .grid.condensed .row[class*=cells] > .cell:nth-child(1):last-child,
441
+ .grid.condensed .row > .cell[class*=colspan]:nth-child(1):last-child,
442
+ .grid.condensed .row[class*=cells] > .cell[class*=colspan]:nth-child(1):last-child,
443
+ .grid.condensed .row > .cell:nth-child(3):last-child,
444
+ .grid.condensed .row[class*=cells] > .cell:nth-child(3):last-child,
445
+ .grid.condensed .row > .cell[class*=colspan]:nth-child(3):last-child,
446
+ .grid.condensed .row[class*=cells] > .cell[class*=colspan]:nth-child(3):last-child,
447
+ .grid.condensed .row > .cell:nth-child(5):last-child,
448
+ .grid.condensed .row[class*=cells] > .cell:nth-child(5):last-child,
449
+ .grid.condensed .row > .cell[class*=colspan]:nth-child(5):last-child,
450
+ .grid.condensed .row[class*=cells] > .cell[class*=colspan]:nth-child(5):last-child,
451
+ .grid.condensed .row > .cell:nth-child(7):last-child,
452
+ .grid.condensed .row[class*=cells] > .cell:nth-child(7):last-child,
453
+ .grid.condensed .row > .cell[class*=colspan]:nth-child(7):last-child,
454
+ .grid.condensed .row[class*=cells] > .cell[class*=colspan]:nth-child(7):last-child,
455
+ .grid.condensed .row > .cell:nth-child(9):last-child,
456
+ .grid.condensed .row[class*=cells] > .cell:nth-child(9):last-child,
457
+ .grid.condensed .row > .cell[class*=colspan]:nth-child(9):last-child,
458
+ .grid.condensed .row[class*=cells] > .cell[class*=colspan]:nth-child(9):last-child,
459
+ .grid.condensed .row > .cell:nth-child(11):last-child,
460
+ .grid.condensed .row[class*=cells] > .cell:nth-child(11):last-child,
461
+ .grid.condensed .row > .cell[class*=colspan]:nth-child(11):last-child,
462
+ .grid.condensed .row[class*=cells] > .cell[class*=colspan]:nth-child(11):last-child {
463
+ width: 100%;
464
+ }
465
+ }
466
+ @media only screen and (max-width: 640px) {
467
+ .grid.condensed .row,
468
+ .grid.condensed .row[class*=cells] {
469
+ margin: 0;
470
+ }
471
+ .grid.condensed .row > .cell,
472
+ .grid.condensed .row[class*=cells] > .cell,
473
+ .grid.condensed .row > .cell[class*=colspan],
474
+ .grid.condensed .row[class*=cells] > .cell[class*=colspan] {
475
+ width: 100%;
476
+ margin: .3125rem 0;
477
+ }
478
+ }
479
+ @media only screen and (max-width: 640px) {
480
+ .f-menu {
481
+ -webkit-flex-direction: column;
482
+ flex-direction: column;
483
+ }
484
+ }
485
+ @media only screen and (max-width: 640px) {
486
+ .f-menu > li .d-menu {
487
+ position: relative;
488
+ box-shadow: none;
489
+ left: 0;
490
+ }
491
+ }
492
+ @media screen and (max-width: 800px) {
493
+ .sidebar {
494
+ width: 52px;
495
+ }
496
+ .sidebar li > a {
497
+ padding-right: 0;
498
+ padding-left: 0;
499
+ width: 52px !important;
500
+ }
501
+ .sidebar li > a > .title {
502
+ display: none ;
503
+ }
504
+ .sidebar li > a > .counter {
505
+ position: absolute;
506
+ top: 0;
507
+ right: 4px;
508
+ }
509
+ }
510
+ @media screen and (max-width: 320px) {
511
+ .wizard2 .step:before {
512
+ width: 16px;
513
+ }
514
+ }
515
+ @media screen and (max-width: 800px) {
516
+ .tile {
517
+ width: 120px;
518
+ height: 120px;
519
+ }
520
+ }
521
+ @media screen and (max-width: 800px) {
522
+ .tile.small-tile {
523
+ width: 56px;
524
+ height: 56px;
525
+ }
526
+ }
527
+ @media screen and (max-width: 800px) {
528
+ .tile.wide-tile {
529
+ width: 248px;
530
+ height: 120px;
531
+ }
532
+ }
533
+ @media screen and (max-width: 800px) {
534
+ .tile.wide-tile-v {
535
+ width: 120px;
536
+ height: 248px;
537
+ }
538
+ }
539
+ @media screen and (max-width: 800px) {
540
+ .tile.large-tile {
541
+ width: 248px;
542
+ height: 248px;
543
+ }
544
+ }
545
+ @media screen and (max-width: 800px) {
546
+ .tile.big-tile {
547
+ width: 376px;
548
+ height: 376px;
549
+ }
550
+ }
551
+ @media screen and (max-width: 800px) {
552
+ .tile.super-tile {
553
+ width: 504px;
554
+ height: 504px;
555
+ }
556
+ }
557
+ @media screen and (max-width: 800px) {
558
+ .tile-square {
559
+ width: 120px;
560
+ height: 120px;
561
+ }
562
+ }
563
+ @media screen and (max-width: 800px) {
564
+ .tile-small {
565
+ width: 56px;
566
+ height: 56px;
567
+ }
568
+ }
569
+ @media screen and (max-width: 800px) {
570
+ .tile-wide {
571
+ width: 248px;
572
+ height: 120px;
573
+ }
574
+ }
575
+ @media screen and (max-width: 800px) {
576
+ .tile-large {
577
+ width: 248px;
578
+ height: 248px;
579
+ }
580
+ }
581
+ @media screen and (max-width: 800px) {
582
+ .tile-big {
583
+ width: 376px;
584
+ height: 376px;
585
+ }
586
+ }
587
+ @media screen and (max-width: 800px) {
588
+ .tile-super {
589
+ width: 504px;
590
+ height: 504px;
591
+ }
592
+ }
593
+ @media screen and (max-width: 800px) {
594
+ .tile-small-x {
595
+ width: 56px;
596
+ }
597
+ }
598
+ @media screen and (max-width: 800px) {
599
+ .tile-square-x {
600
+ width: 120px;
601
+ }
602
+ }
603
+ @media screen and (max-width: 800px) {
604
+ .tile-wide-x {
605
+ width: 248px;
606
+ }
607
+ }
608
+ @media screen and (max-width: 800px) {
609
+ .tile-large-x {
610
+ width: 248px;
611
+ }
612
+ }
613
+ @media screen and (max-width: 800px) {
614
+ .tile-big-x {
615
+ width: 376px;
616
+ }
617
+ }
618
+ @media screen and (max-width: 800px) {
619
+ .tile-super-x {
620
+ width: 504px;
621
+ }
622
+ }
623
+ @media screen and (max-width: 800px) {
624
+ .tile-small-y {
625
+ height: 56px;
626
+ }
627
+ }
628
+ @media screen and (max-width: 800px) {
629
+ .tile-square-y {
630
+ height: 120px;
631
+ }
632
+ }
633
+ @media screen and (max-width: 800px) {
634
+ .tile-wide-y {
635
+ height: 248px;
636
+ }
637
+ }
638
+ @media screen and (max-width: 800px) {
639
+ .tile-large-y {
640
+ height: 248px;
641
+ }
642
+ }
643
+ @media screen and (max-width: 800px) {
644
+ .tile-big-y {
645
+ height: 376px;
646
+ }
647
+ }
648
+ @media screen and (max-width: 800px) {
649
+ .tile-super-y {
650
+ height: 504px;
651
+ }
652
+ }
653
+ @media screen and (max-width: 800px) {
654
+ .tile-content.iconic .icon {
655
+ width: 51.2px;
656
+ height: 51.2px;
657
+ margin-left: -25.6px;
658
+ margin-top: -32px;
659
+ font-size: 51.2px;
660
+ }
661
+ }
662
+ @media screen and (max-width: 800px) {
663
+ .tile-small .tile-content.iconic .icon {
664
+ font-size: 25.6px;
665
+ width: 25.6px;
666
+ height: 25.6px;
667
+ margin-left: -12.8px;
668
+ margin-top: -12.8px;
669
+ }
670
+ }
671
+ @media screen and (max-width: 640px) {
672
+ .tile-area {
673
+ width: 100% ;
674
+ padding: 0;
675
+ }
676
+ .tile-area .tile-area-title {
677
+ display: none;
678
+ }
679
+ .tile-area .tile-group {
680
+ margin: 0 ;
681
+ padding: 0 ;
682
+ float: none;
683
+ }
684
+ .tile-area .tile-group .tile-group-title {
685
+ display: none;
686
+ }
687
+ }
688
+ @media screen and (max-width: 640px) {
689
+ .tile-container {
690
+ width: 100% ;
691
+ }
692
+ }
693
+ @media screen and (max-width: 320px) {
694
+ .tile-big,
695
+ .tile.big-tile,
696
+ .tile-super,
697
+ .tile.super-tile {
698
+ width: 310px ;
699
+ }
700
+ }
701
+ @media screen and (max-width: 320px) {
702
+ .no-small-phone {
703
+ display: none !important;
704
+ }
705
+ }
706
+ @media screen and (max-width: 640px) {
707
+ .no-phone {
708
+ display: none !important;
709
+ }
710
+ }
711
+ @media screen and (max-width: 800px) {
712
+ .no-tablet {
713
+ display: none !important;
714
+ }
715
+ }
716
+ @media screen and (min-width: 801px) {
717
+ .no-pc {
718
+ display: none !important;
719
+ }
720
+ }