moj_template 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. checksums.yaml +7 -0
  2. data/LICENCE.txt +22 -0
  3. data/README.md +96 -0
  4. data/app/assets/images/apple-touch-icon-114x114.png +0 -0
  5. data/app/assets/images/apple-touch-icon-144x144.png +0 -0
  6. data/app/assets/images/apple-touch-icon-57x57.png +0 -0
  7. data/app/assets/images/apple-touch-icon-72x72.png +0 -0
  8. data/app/assets/images/favicon.ico +0 -0
  9. data/app/assets/images/gov.uk_logotype_crown.png +0 -0
  10. data/app/assets/images/gov.uk_logotype_crown_invert.png +0 -0
  11. data/app/assets/images/gov.uk_logotype_crown_invert_trans.png +0 -0
  12. data/app/assets/images/open-government-licence_2x.png +0 -0
  13. data/app/assets/images/opengraph-image.png +0 -0
  14. data/app/assets/javascripts/govuk-template.js +126 -0
  15. data/app/assets/javascripts/ie.js +513 -0
  16. data/app/assets/javascripts/modules/moj.tabs.js +83 -0
  17. data/app/assets/javascripts/moj.js +54 -0
  18. data/app/assets/javascripts/vendor/goog/webfont-debug.js +2127 -0
  19. data/app/assets/javascripts/vendor/jquery/jquery-1.11.0.min.js +5 -0
  20. data/app/assets/stylesheets/external-link-24x24.png +0 -0
  21. data/app/assets/stylesheets/external-link-black-12x12.png +0 -0
  22. data/app/assets/stylesheets/external-link-black-24x24.png +0 -0
  23. data/app/assets/stylesheets/external-link.png +0 -0
  24. data/app/assets/stylesheets/fonts-ie8.css.erb +31 -0
  25. data/app/assets/stylesheets/fonts.css.erb +31 -0
  26. data/app/assets/stylesheets/fonts/NTA-Bold-20130221.eot +0 -0
  27. data/app/assets/stylesheets/fonts/NTA-Bold-20130221.woff +0 -0
  28. data/app/assets/stylesheets/fonts/NTA-Light-20130221.eot +0 -0
  29. data/app/assets/stylesheets/fonts/NTA-Light-20130221.woff +0 -0
  30. data/app/assets/stylesheets/fonts/NTATabularNumbers-Bold.eot +0 -0
  31. data/app/assets/stylesheets/fonts/NTATabularNumbers-Bold.woff +0 -0
  32. data/app/assets/stylesheets/fonts/NTATabularNumbers-Light.eot +0 -0
  33. data/app/assets/stylesheets/fonts/NTATabularNumbers-Light.woff +0 -0
  34. data/app/assets/stylesheets/govuk-template-ie6.css.erb +652 -0
  35. data/app/assets/stylesheets/govuk-template-ie7.css.erb +648 -0
  36. data/app/assets/stylesheets/govuk-template-ie8.css.erb +631 -0
  37. data/app/assets/stylesheets/govuk-template-print.css.erb +78 -0
  38. data/app/assets/stylesheets/govuk-template.css.erb +691 -0
  39. data/app/assets/stylesheets/images/close.png +0 -0
  40. data/app/assets/stylesheets/images/govuk-crest-2x.png +0 -0
  41. data/app/assets/stylesheets/images/govuk-crest-ie.png +0 -0
  42. data/app/assets/stylesheets/images/govuk-crest.png +0 -0
  43. data/app/assets/stylesheets/images/separator-2x.png +0 -0
  44. data/app/assets/stylesheets/images/separator.png +0 -0
  45. data/app/assets/stylesheets/moj-template.css.erb +628 -0
  46. data/app/helpers/moj_helper.rb +9 -0
  47. data/app/views/layouts/moj_template.html.erb +223 -0
  48. data/lib/moj_template.rb +5 -0
  49. data/lib/moj_template/engine.rb +17 -0
  50. data/lib/moj_template/version.rb +3 -0
  51. data/lib/tasks/moj_template_tasks.rake +4 -0
  52. metadata +192 -0
@@ -0,0 +1,628 @@
1
+ @font-face {
2
+ font-family: GDS-Logo;
3
+ src: local("HelveticaNeue"), local("Helvetica Neue"), local("Arial"), local("Helvetica"); }
4
+
5
+ @-ms-viewport {
6
+ width: device-width; }
7
+
8
+ @-o-viewport {
9
+ width: device-width; }
10
+
11
+ @-ms-viewport {
12
+ width: device-width; }
13
+
14
+ @-o-viewport {
15
+ width: device-width; }
16
+
17
+ /* CSS 3 Mixins
18
+
19
+ Add them as you need them. This should let us manage vendor prefixes in one place.
20
+ */
21
+ /* Cross-browser shims
22
+
23
+ Ways of normalising properties across browsers.
24
+ */
25
+ @-ms-viewport {
26
+ width: device-width; }
27
+
28
+ @-o-viewport {
29
+ width: device-width; }
30
+
31
+ /* Usage:
32
+ @include inline-block
33
+
34
+ or
35
+
36
+ @include inline-block("250px")
37
+
38
+ which gives a min-height to the inline-block elements.
39
+ */
40
+ /* Contain floats usage:
41
+
42
+ .this-has-floated-children {
43
+ @extend %contain-floats;
44
+ }
45
+
46
+ */
47
+ /* Cross-browser shims
48
+
49
+ Ways of normalising properties across browsers.
50
+ */
51
+ @-ms-viewport {
52
+ width: device-width; }
53
+
54
+ @-o-viewport {
55
+ width: device-width; }
56
+
57
+ /* Usage:
58
+ @include inline-block
59
+
60
+ or
61
+
62
+ @include inline-block("250px")
63
+
64
+ which gives a min-height to the inline-block elements.
65
+ */
66
+ /* Contain floats usage:
67
+
68
+ .this-has-floated-children {
69
+ @extend %contain-floats;
70
+ }
71
+
72
+ */
73
+ /* CSS 3 Mixins
74
+
75
+ Add them as you need them. This should let us manage vendor prefixes in one place.
76
+ */
77
+ @-ms-viewport {
78
+ width: device-width; }
79
+
80
+ @-o-viewport {
81
+ width: device-width; }
82
+
83
+ /*
84
+
85
+ Mixin and defaults for making buttons on GOV.UK services.
86
+
87
+ For guidance, see: https://www.gov.uk/service-manual/design-and-content/resources/buttons.html
88
+
89
+ Example usage:
90
+
91
+ .button{
92
+ @include button;
93
+ }
94
+ .button-secondary{
95
+ @include button($grey-3);
96
+ }
97
+ .button-warning{
98
+ @include button($red);
99
+ }
100
+
101
+ */
102
+ @font-face {
103
+ font-family: GDS-Logo;
104
+ src: local("HelveticaNeue"), local("Helvetica Neue"), local("Arial"), local("Helvetica"); }
105
+
106
+ @-ms-viewport {
107
+ width: device-width; }
108
+
109
+ @-o-viewport {
110
+ width: device-width; }
111
+
112
+ /* Cross-browser shims
113
+
114
+ Ways of normalising properties across browsers.
115
+ */
116
+ @-ms-viewport {
117
+ width: device-width; }
118
+
119
+ @-o-viewport {
120
+ width: device-width; }
121
+
122
+ /* Usage:
123
+ @include inline-block
124
+
125
+ or
126
+
127
+ @include inline-block("250px")
128
+
129
+ which gives a min-height to the inline-block elements.
130
+ */
131
+ /* Contain floats usage:
132
+
133
+ .this-has-floated-children {
134
+ @extend %contain-floats;
135
+ }
136
+
137
+ */
138
+ header.page-header h1 {
139
+ font-family: "nta", Arial, sans-serif;
140
+ font-size: 48px;
141
+ line-height: 1.04167;
142
+ font-weight: 400;
143
+ text-transform: none;
144
+ padding-top: 10px;
145
+ padding-bottom: 10px;
146
+ font-weight: 700;
147
+ padding-top: 24px;
148
+ padding-bottom: 8px; }
149
+ @media (max-width: 640px) {
150
+ header.page-header h1 {
151
+ font-size: 32px;
152
+ line-height: 1.09375; } }
153
+ @media (min-width: 641px) {
154
+ header.page-header h1 {
155
+ padding-top: 7px;
156
+ padding-bottom: 13px; } }
157
+ @media (min-width: 641px) {
158
+ header.page-header h1 {
159
+ padding-top: 32px;
160
+ padding-bottom: 10px; } }
161
+ @media (min-width: 769px) {
162
+ header.page-header h1 {
163
+ padding-top: 48px;
164
+ padding-bottom: 16px; } }
165
+ header.page-header h1 span {
166
+ font-family: "nta", Arial, sans-serif;
167
+ font-size: 27px;
168
+ line-height: 1.11111;
169
+ font-weight: 400;
170
+ text-transform: none;
171
+ display: block;
172
+ color: #6f777b; }
173
+ @media (max-width: 640px) {
174
+ header.page-header h1 span {
175
+ font-size: 18px;
176
+ line-height: 1.11111; } }
177
+ header.page-header h1 .alpha {
178
+ display: -moz-inline-stack;
179
+ display: inline-block;
180
+ background-color: #d53880;
181
+ color: #fff;
182
+ font-family: "nta", Arial, sans-serif;
183
+ font-size: 16px;
184
+ line-height: 1.25;
185
+ font-weight: 300;
186
+ text-transform: none;
187
+ font-weight: 700;
188
+ text-transform: uppercase;
189
+ letter-spacing: 1px;
190
+ text-decoration: none;
191
+ margin: 3px 10px 0 5px;
192
+ padding: 2px 5px 0; }
193
+ @media (max-width: 640px) {
194
+ header.page-header h1 .alpha {
195
+ font-size: 14px;
196
+ line-height: 1.14286; } }
197
+ header.page-header h1 .beta {
198
+ display: -moz-inline-stack;
199
+ display: inline-block;
200
+ background-color: #f47738;
201
+ color: #fff;
202
+ font-family: "nta", Arial, sans-serif;
203
+ font-size: 16px;
204
+ line-height: 1.25;
205
+ font-weight: 300;
206
+ text-transform: none;
207
+ font-weight: 700;
208
+ text-transform: uppercase;
209
+ letter-spacing: 1px;
210
+ text-decoration: none;
211
+ margin: 3px 10px 0 5px;
212
+ padding: 2px 5px 0; }
213
+ @media (max-width: 640px) {
214
+ header.page-header h1 .beta {
215
+ font-size: 14px;
216
+ line-height: 1.14286; } }
217
+ header.page-header h1 .alpha, header.page-header h1 .beta {
218
+ float: none;
219
+ display: inline;
220
+ vertical-align: middle;
221
+ margin-left: 1em; }
222
+
223
+ h2, h3, h4 {
224
+ font-weight: 400; }
225
+
226
+ #content {
227
+ margin: auto;
228
+ max-width: 1020px;
229
+ width: auto;
230
+ _width: 1020px;
231
+ min-height: 400px; }
232
+
233
+ #wrapper {
234
+ background-color: white;
235
+ padding: 0 0 60px 0;
236
+ border-bottom: 10px solid #0b0c0c; }
237
+ body.alpha #wrapper {
238
+ border-color: #d53880; }
239
+ body.beta #wrapper {
240
+ border-color: #f47738; }
241
+
242
+ .inner {
243
+ width: auto;
244
+ padding: 0 1em; }
245
+ @media (min-width: 769px) {
246
+ .inner {
247
+ padding: 0 2em; } }
248
+
249
+ body.alpha .indicator {
250
+ padding: 8px 0;
251
+ background-color: #d53880; }
252
+ body.alpha .indicator p {
253
+ max-width: 960px;
254
+ margin: 0 auto;
255
+ padding: 0 15px;
256
+ color: #0b0c0c;
257
+ font-family: "nta", Arial, sans-serif;
258
+ font-size: 16px;
259
+ line-height: 1.25;
260
+ font-weight: 300;
261
+ text-transform: none; }
262
+ @media (max-width: 640px) {
263
+ body.alpha .indicator p {
264
+ font-size: 14px;
265
+ line-height: 1.14286; } }
266
+ body.alpha .indicator a, body.alpha .indicator a:link, body.alpha .indicator a:visited, body.alpha .indicator a:active {
267
+ color: #0b0c0c; }
268
+ body.alpha .indicator a:hover {
269
+ color: #0b0c0c; }
270
+ body.beta .indicator {
271
+ padding: 8px 0;
272
+ background-color: #f47738; }
273
+ body.beta .indicator p {
274
+ max-width: 960px;
275
+ margin: 0 auto;
276
+ padding: 0 15px;
277
+ color: #0b0c0c;
278
+ font-family: "nta", Arial, sans-serif;
279
+ font-size: 16px;
280
+ line-height: 1.25;
281
+ font-weight: 300;
282
+ text-transform: none; }
283
+ @media (max-width: 640px) {
284
+ body.beta .indicator p {
285
+ font-size: 14px;
286
+ line-height: 1.14286; } }
287
+ body.beta .indicator a, body.beta .indicator a:link, body.beta .indicator a:visited, body.beta .indicator a:active {
288
+ color: #0b0c0c; }
289
+ body.beta .indicator a:hover {
290
+ color: #0b0c0c; }
291
+
292
+ .service-header {
293
+ float: left;
294
+ width: 66.6%;
295
+ margin: 7px 0 2px; }
296
+ .service-header a.service-name {
297
+ font-family: "nta", Arial, sans-serif;
298
+ font-size: 24px;
299
+ line-height: 1em;
300
+ font-weight: 400;
301
+ text-transform: none;
302
+ color: white;
303
+ font-weight: bold;
304
+ text-decoration: none;
305
+ float: left;
306
+ margin-top: 3px; }
307
+ @media (max-width: 640px) {
308
+ .service-header a.service-name {
309
+ font-size: 20px;
310
+ line-height: 1.2; } }
311
+ .service-header a.service-name:hover {
312
+ border-bottom: 1px solid white; }
313
+ body.alpha .service-header a.service-phase {
314
+ display: -moz-inline-stack;
315
+ display: inline-block;
316
+ background-color: #d53880;
317
+ color: #fff;
318
+ font-family: "nta", Arial, sans-serif;
319
+ font-size: 16px;
320
+ line-height: 1.25;
321
+ font-weight: 300;
322
+ text-transform: none;
323
+ font-weight: 700;
324
+ text-transform: uppercase;
325
+ letter-spacing: 1px;
326
+ text-decoration: none;
327
+ margin: 3px 10px 0 5px;
328
+ padding: 2px 5px 0; }
329
+ @media (max-width: 640px) {
330
+ body.alpha .service-header a.service-phase {
331
+ font-size: 14px;
332
+ line-height: 1.14286; } }
333
+ body.beta .service-header a.service-phase {
334
+ display: -moz-inline-stack;
335
+ display: inline-block;
336
+ background-color: #f47738;
337
+ color: #fff;
338
+ font-family: "nta", Arial, sans-serif;
339
+ font-size: 16px;
340
+ line-height: 1.25;
341
+ font-weight: 300;
342
+ text-transform: none;
343
+ font-weight: 700;
344
+ text-transform: uppercase;
345
+ letter-spacing: 1px;
346
+ text-decoration: none;
347
+ margin: 3px 10px 0 5px;
348
+ padding: 2px 5px 0; }
349
+ @media (max-width: 640px) {
350
+ body.beta .service-header a.service-phase {
351
+ font-size: 14px;
352
+ line-height: 1.14286; } }
353
+ body.alpha .service-header a.service-phase, body.beta .service-header a.service-phase {
354
+ margin-left: 1em;
355
+ text-decoration: none; }
356
+
357
+ #global-breadcrumb {
358
+ background-color: white;
359
+ max-width: 1020px;
360
+ margin: 0 auto;
361
+ z-index: 50; }
362
+ #global-breadcrumb nav ol {
363
+ max-width: 960px;
364
+ margin: 0 30px;
365
+ padding: 0.75em 0; }
366
+ #global-breadcrumb nav ol li {
367
+ font-family: "nta", Arial, sans-serif;
368
+ font-size: 16px;
369
+ line-height: 1.25;
370
+ font-weight: 300;
371
+ text-transform: none;
372
+ background: url(https://assets.digital.cabinet-office.gov.uk/static/separator-73822610794bc3a64871f144d93d6526.png) 100% 50% no-repeat;
373
+ float: left;
374
+ list-style: none;
375
+ margin-left: 0;
376
+ margin-right: 0.5em;
377
+ padding-right: 1em; }
378
+ @media (max-width: 640px) {
379
+ #global-breadcrumb nav ol li {
380
+ font-size: 14px;
381
+ line-height: 1.14286; } }
382
+ #global-breadcrumb nav ol li:last-child {
383
+ background-image: none;
384
+ margin-right: 0; }
385
+ #global-breadcrumb nav ol li a {
386
+ color: #0b0c0c; }
387
+ #global-breadcrumb nav ol li a:hover {
388
+ color: #2e8aca; }
389
+
390
+ .button {
391
+ background-color: #00823b;
392
+ position: relative;
393
+ display: -moz-inline-stack;
394
+ display: inline-block;
395
+ padding: 0.35em 0.5em 0.15em 0.5em;
396
+ border: none;
397
+ -webkit-border-radius: 0;
398
+ -moz-border-radius: 0;
399
+ border-radius: 0;
400
+ -webkit-appearance: none;
401
+ -webkit-box-shadow: 0 2px 0 #003518;
402
+ -moz-box-shadow: 0 2px 0 #003518;
403
+ box-shadow: 0 2px 0 #003518;
404
+ font-size: 1em;
405
+ line-height: 1.25;
406
+ text-decoration: none;
407
+ -webkit-font-smoothing: antialiased;
408
+ cursor: pointer;
409
+ color: white; }
410
+ .button:visited {
411
+ background-color: #00823b; }
412
+ .button:hover, .button:focus {
413
+ background-color: #00692f; }
414
+ .button:active {
415
+ top: 2px;
416
+ -webkit-box-shadow: 0 0 0 #00823b;
417
+ -moz-box-shadow: 0 0 0 #00823b;
418
+ box-shadow: 0 0 0 #00823b; }
419
+ .button.disabled, .button[disabled="disabled"], .button[disabled] {
420
+ zoom: 1;
421
+ filter: alpha(opacity=50);
422
+ opacity: 0.5; }
423
+ .button.disabled:hover, .button[disabled="disabled"]:hover, .button[disabled]:hover {
424
+ cursor: default;
425
+ background-color: #00823b; }
426
+ .button.disabled:active, .button[disabled="disabled"]:active, .button[disabled]:active {
427
+ top: 0;
428
+ -webkit-box-shadow: 0 2px 0 #003518;
429
+ -moz-box-shadow: 0 2px 0 #003518;
430
+ box-shadow: 0 2px 0 #003518; }
431
+ .button:hover, .button:focus, .button:visited {
432
+ color: white; }
433
+ .button:before {
434
+ content: "";
435
+ height: 110%;
436
+ width: 100%;
437
+ display: block;
438
+ background: transparent;
439
+ position: absolute;
440
+ top: 0;
441
+ left: 0; }
442
+ .button:active:before {
443
+ top: -10%;
444
+ height: 120%; }
445
+ .button[rel="external"]:after {
446
+ display: none;
447
+ content: none;
448
+ margin-left: 0;
449
+ margin-right: 0; }
450
+
451
+ .button-secondary {
452
+ background-color: #dee0e2;
453
+ position: relative;
454
+ display: -moz-inline-stack;
455
+ display: inline-block;
456
+ padding: 0.35em 0.5em 0.15em 0.5em;
457
+ border: none;
458
+ -webkit-border-radius: 0;
459
+ -moz-border-radius: 0;
460
+ border-radius: 0;
461
+ -webkit-appearance: none;
462
+ -webkit-box-shadow: 0 2px 0 #b5babe;
463
+ -moz-box-shadow: 0 2px 0 #b5babe;
464
+ box-shadow: 0 2px 0 #b5babe;
465
+ font-size: 1em;
466
+ line-height: 1.25;
467
+ text-decoration: none;
468
+ -webkit-font-smoothing: antialiased;
469
+ cursor: pointer;
470
+ color: #0b0c0c; }
471
+ .button-secondary:visited {
472
+ background-color: #dee0e2; }
473
+ .button-secondary:hover, .button-secondary:focus {
474
+ background-color: #d0d3d6; }
475
+ .button-secondary:active {
476
+ top: 2px;
477
+ -webkit-box-shadow: 0 0 0 #dee0e2;
478
+ -moz-box-shadow: 0 0 0 #dee0e2;
479
+ box-shadow: 0 0 0 #dee0e2; }
480
+ .button-secondary.disabled, .button-secondary[disabled="disabled"], .button-secondary[disabled] {
481
+ zoom: 1;
482
+ filter: alpha(opacity=50);
483
+ opacity: 0.5; }
484
+ .button-secondary.disabled:hover, .button-secondary[disabled="disabled"]:hover, .button-secondary[disabled]:hover {
485
+ cursor: default;
486
+ background-color: #dee0e2; }
487
+ .button-secondary.disabled:active, .button-secondary[disabled="disabled"]:active, .button-secondary[disabled]:active {
488
+ top: 0;
489
+ -webkit-box-shadow: 0 2px 0 #b5babe;
490
+ -moz-box-shadow: 0 2px 0 #b5babe;
491
+ box-shadow: 0 2px 0 #b5babe; }
492
+ .button-secondary:hover, .button-secondary:focus, .button-secondary:visited {
493
+ color: #0b0c0c; }
494
+ .button-secondary:before {
495
+ content: "";
496
+ height: 110%;
497
+ width: 100%;
498
+ display: block;
499
+ background: transparent;
500
+ position: absolute;
501
+ top: 0;
502
+ left: 0; }
503
+ .button-secondary:active:before {
504
+ top: -10%;
505
+ height: 120%; }
506
+ .button-secondary[rel="external"]:after {
507
+ display: none;
508
+ content: none;
509
+ margin-left: 0;
510
+ margin-right: 0; }
511
+
512
+ .button-warning {
513
+ background-color: #b10e1e;
514
+ position: relative;
515
+ display: -moz-inline-stack;
516
+ display: inline-block;
517
+ padding: 0.35em 0.5em 0.15em 0.5em;
518
+ border: none;
519
+ -webkit-border-radius: 0;
520
+ -moz-border-radius: 0;
521
+ border-radius: 0;
522
+ -webkit-appearance: none;
523
+ -webkit-box-shadow: 0 2px 0 #6a0812;
524
+ -moz-box-shadow: 0 2px 0 #6a0812;
525
+ box-shadow: 0 2px 0 #6a0812;
526
+ font-size: 1em;
527
+ line-height: 1.25;
528
+ text-decoration: none;
529
+ -webkit-font-smoothing: antialiased;
530
+ cursor: pointer;
531
+ color: white; }
532
+ .button-warning:visited {
533
+ background-color: #b10e1e; }
534
+ .button-warning:hover, .button-warning:focus {
535
+ background-color: #990c1a; }
536
+ .button-warning:active {
537
+ top: 2px;
538
+ -webkit-box-shadow: 0 0 0 #b10e1e;
539
+ -moz-box-shadow: 0 0 0 #b10e1e;
540
+ box-shadow: 0 0 0 #b10e1e; }
541
+ .button-warning.disabled, .button-warning[disabled="disabled"], .button-warning[disabled] {
542
+ zoom: 1;
543
+ filter: alpha(opacity=50);
544
+ opacity: 0.5; }
545
+ .button-warning.disabled:hover, .button-warning[disabled="disabled"]:hover, .button-warning[disabled]:hover {
546
+ cursor: default;
547
+ background-color: #b10e1e; }
548
+ .button-warning.disabled:active, .button-warning[disabled="disabled"]:active, .button-warning[disabled]:active {
549
+ top: 0;
550
+ -webkit-box-shadow: 0 2px 0 #6a0812;
551
+ -moz-box-shadow: 0 2px 0 #6a0812;
552
+ box-shadow: 0 2px 0 #6a0812; }
553
+ .button-warning:hover, .button-warning:focus, .button-warning:visited {
554
+ color: white; }
555
+ .button-warning:before {
556
+ content: "";
557
+ height: 110%;
558
+ width: 100%;
559
+ display: block;
560
+ background: transparent;
561
+ position: absolute;
562
+ top: 0;
563
+ left: 0; }
564
+ .button-warning:active:before {
565
+ top: -10%;
566
+ height: 120%; }
567
+ .button-warning[rel="external"]:after {
568
+ display: none;
569
+ content: none;
570
+ margin-left: 0;
571
+ margin-right: 0; }
572
+
573
+ #footer h2 {
574
+ font-family: "nta", Arial, sans-serif;
575
+ font-size: 24px;
576
+ line-height: 1.25;
577
+ font-weight: 400;
578
+ text-transform: none;
579
+ font-weight: 700; }
580
+ @media (max-width: 640px) {
581
+ #footer h2 {
582
+ font-size: 20px;
583
+ line-height: 1.2; } }
584
+ #footer .footer-categories {
585
+ font-size: 0;
586
+ float: left;
587
+ border: 1px solid #a1acb2;
588
+ border-width: 0 0 1px 0;
589
+ margin-bottom: 30px;
590
+ padding: 0 0 60px 0;
591
+ width: 100%; }
592
+ #footer .footer-categories ul {
593
+ font-family: "nta", Arial, sans-serif;
594
+ font-size: 16px;
595
+ line-height: 1.25;
596
+ font-weight: 300;
597
+ text-transform: none;
598
+ list-style: none;
599
+ border-top: 1px solid #a1acb2;
600
+ margin: 20px 0 0 0;
601
+ padding: 20px 0 0 0;
602
+ min-height: 210px;
603
+ vertical-align: top; }
604
+ @media (max-width: 640px) {
605
+ #footer .footer-categories ul {
606
+ font-size: 14px;
607
+ line-height: 1.14286; } }
608
+ #footer .footer-categories ul li {
609
+ display: block;
610
+ float: left;
611
+ clear: left;
612
+ margin: 0 0 15px 0;
613
+ width: 45.5%; }
614
+ #footer .footer-categories ul li:nth-child(even) {
615
+ float: right;
616
+ clear: none; }
617
+ #footer .footer-explore {
618
+ float: left;
619
+ margin-right: 7%;
620
+ width: 62%; }
621
+ #footer .footer-inside-government {
622
+ float: left;
623
+ width: 31%; }
624
+ #footer .footer-inside-government ul {
625
+ margin-right: 0; }
626
+ #footer .footer-inside-government ul li {
627
+ margin-right: 0;
628
+ width: 100%; }