dta_rapid 0.4.0 → 0.4.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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/assets/uikit.css +1972 -0
  3. metadata +4 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 310306141422860e4c42d39b055290b82c3f043e
4
- data.tar.gz: 52e08b6f0a59d70c0cbcc15d8695aaf071a2ddc8
3
+ metadata.gz: 2af3e416ea440436d0bcb6a09af0f5de9921edeb
4
+ data.tar.gz: 1216f630953c02c3f0420e434dbf5769fa86939d
5
5
  SHA512:
6
- metadata.gz: 10b1f2cf8b0a3594d20a901c9366843f0c35a40e1bedb30b49faca7fa1fef488498b210391edadc10a591a28aa140be950201e0e93476043b616025a39dc18aa
7
- data.tar.gz: 80f3e6a34e66866fa3c7f5d32beec84e0a7077d1f88765788594f8ecd32901a0722f7662fcc2db9be986027bf5f0c262154551310c46895fd8835ee4a8fb5ae3
6
+ metadata.gz: 2b5647e53206e1e686a950bf196311ef739f3bce7f16a91a485c2c0ec7ef7c30fddec385d8724df5e1411efba7d9e34954d392d7afc38058566f4a7a4c4b1cff
7
+ data.tar.gz: d644428fa95fb0e614f276c6700a86a87d34c93be869e5a0febaf04e179a61f4b800fc330916c5d45292ce65a082e7f8d7815799a8f8c1355037aaccf988a72f
data/assets/uikit.css ADDED
@@ -0,0 +1,1972 @@
1
+ @charset "UTF-8";
2
+ /*! PANCAKE v1.0.15 PANCAKE-SASS v1.0.10 */
3
+ /**
4
+ * Sass versioning
5
+ *
6
+ * @description Version your scss modules and test them at compile time
7
+ * @author @dominikwilkowski
8
+ * @website https://dominikwilkowski.github.io/sass-versioning/sassdoc/
9
+ * @repository https://github.com/dominikwilkowski/sass-versioning
10
+ * @license https://raw.githubusercontent.com/dominikwilkowski/sass-versioning/master/LICENSE GPL-3.0
11
+ */
12
+ /*! @gov.au/core v0.1.0 */
13
+ /**
14
+ * Breakpoints
15
+ */
16
+ /**
17
+ * Line-height (‘leading’)
18
+ */
19
+ /**
20
+ * Font stacks
21
+ */
22
+ /**
23
+ * max-width for line lengths (the ‘measure’)
24
+ */
25
+ /**
26
+ * Colours
27
+ */
28
+ /**
29
+ * Border vars and styles
30
+ */
31
+ /**
32
+ * Clearing floats
33
+ */
34
+ /**
35
+ * Create media queries and wraps the @content code inside of it
36
+ *
37
+ * @param {keywords} $breakpoint - Either one of the following keywords: xs, sm, md, lg
38
+ *
39
+ * @return {string} - The code passed in via @content wrapped inside a media query
40
+ */
41
+ /**
42
+ * Hide an element from the screen but not a screen reader
43
+ */
44
+ /**
45
+ * The outline for focus
46
+ */
47
+ /**
48
+ * Add the outline to focus
49
+ */
50
+ /**
51
+ * Return a space value based on the line-height and the unit em
52
+ *
53
+ * @param {number} $number - The space as a multiplier of line-height
54
+ * @param {number} $number - The line-height [optional]
55
+ *
56
+ * @return {number} - The space in ems
57
+ */
58
+ /**
59
+ * Replace a string with a string
60
+ * http://codepen.io/jakob-e/pen/doMoML
61
+ *
62
+ * @author @eriksen_dk <https://twitter.com/eriksen_dk>
63
+ *
64
+ * @param {string} $string - The haystack string to be manipulated
65
+ * @param {string} $search - The needle to be replace
66
+ * @param {string} $replace - The replacement
67
+ *
68
+ * @return {string} - The manipulated string with replaced values
69
+ */
70
+ /**
71
+ * Generate an optimized SVG data-uri for
72
+ * https://codepen.io/tigt/post/optimizing-svgs-in-data-uris
73
+ * http://codepen.io/jakob-e/pen/doMoML
74
+ *
75
+ * @author @eriksen_dk <https://twitter.com/eriksen_dk>
76
+ *
77
+ * @param {string} $svg - The SVG to be converted
78
+ *
79
+ * @return {string} - An optimized data-uri
80
+ */
81
+ /**
82
+ * Returns the factorial of a non-negative integer.
83
+ * https://github.com/terkel/mathsass
84
+ *
85
+ * @author Pascal Duez @pascalduez <http://pascalduez.me/>
86
+ *
87
+ * @param {integer} $number - A non-negative integer.
88
+ *
89
+ * @return {integer} - The factorial log
90
+ */
91
+ /**
92
+ * Returns base to the exponent power.
93
+ * https://github.com/terkel/mathsass
94
+ *
95
+ * @author Pascal Duez @pascalduez <http://pascalduez.me/>
96
+ *
97
+ * @param {integers} $base - The base number
98
+ * @param {integers} $exponent - The exponent to which to raise base
99
+ *
100
+ * @return {integers} - The result of the math
101
+ */
102
+ /**
103
+ * Calculate color luminance
104
+ *
105
+ * https://github.com/voxpelli/sass-color-helpers/blob/master/stylesheets/color-helpers/_contrast.scss
106
+ * Adapted from: https://github.com/LeaVerou/contrast-ratio/blob/gh-pages/color.js
107
+ * Formula: http://www.w3.org/TR/2008/REC-WCAG20-20081211/#relativeluminancedef
108
+ *
109
+ * @author Pelle Wessman @voxpelli <http://kodfabrik.se/>
110
+ *
111
+ * @param {string} $colour - The color to calculate the luminance from
112
+ *
113
+ * @return {float} - The luminance
114
+ */
115
+ /**
116
+ * Get the contrast ratio of two colors and warn when it is below WCAG 2.0 AA standard 4.5:1
117
+ *
118
+ * https://github.com/voxpelli/sass-color-helpers/blob/master/stylesheets/color-helpers/_contrast.scss
119
+ * Adapted from: https://github.com/LeaVerou/contrast-ratio/blob/gh-pages/color.js
120
+ * Formula: http://www.w3.org/TR/2008/REC-WCAG20-20081211/#contrast-ratiodef
121
+ *
122
+ * @author Pelle Wessman @voxpelli <http://kodfabrik.se/>
123
+ *
124
+ * @param {string} $forground - Color one
125
+ * @param {string} $background - Color two
126
+ *
127
+ * @return {integer} - The contrast ratio
128
+ */
129
+ /*! @gov.au/body v0.1.0 */
130
+ @media print {
131
+ .uikit-body * {
132
+ text-shadow: none !important;
133
+ color: #000 !important;
134
+ background: #fff !important;
135
+ box-shadow: none !important;
136
+ border-color: #000 !important;
137
+ }
138
+ .uikit-body a,
139
+ .uikit-body a:visited {
140
+ text-decoration: underline;
141
+ }
142
+ .uikit-body a[href]:after {
143
+ content: " (" attr(href) ")";
144
+ }
145
+ .uikit-body abbr[title]:after {
146
+ content: " (" attr(title) ")";
147
+ }
148
+ .uikit-body a[href^="javascript:"]:after,
149
+ .uikit-body a[href^="#"]:after {
150
+ content: "";
151
+ }
152
+ .uikit-body a[rel~='external']:after {
153
+ display: none !important;
154
+ }
155
+ .uikit-body pre,
156
+ .uikit-body blockquote {
157
+ border: 1px solid #000;
158
+ padding: 6px;
159
+ page-break-inside: avoid;
160
+ }
161
+ .uikit-body thead {
162
+ display: table-header-group;
163
+ }
164
+ .uikit-body tr,
165
+ .uikit-body img {
166
+ page-break-inside: avoid;
167
+ }
168
+ .uikit-body img {
169
+ max-width: 100% !important;
170
+ }
171
+ .uikit-body p,
172
+ .uikit-body h2,
173
+ .uikit-body h3 {
174
+ orphans: 3;
175
+ widows: 3;
176
+ }
177
+ .uikit-body h2,
178
+ .uikit-body h3 {
179
+ page-break-after: avoid;
180
+ }
181
+ .uikit-body p a {
182
+ word-wrap: break-word;
183
+ }
184
+ .uikit-body select {
185
+ background: #fff !important;
186
+ }
187
+ }
188
+
189
+ .uikit-body {
190
+ margin: 0;
191
+ -ms-text-size-adjust: 100%;
192
+ -webkit-text-size-adjust: 100%;
193
+ line-height: 1.6;
194
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
195
+ color: #313131;
196
+ /**
197
+ * Highlighting in-page sections that are in focus
198
+ */
199
+ /**
200
+ * Text selection and `mark` styling.
201
+ */
202
+ /**
203
+ * Vertical spacing of common text elements.
204
+ */
205
+ /**
206
+ * Emphasis and alt. voice/mood/diff. from prose text.
207
+ */
208
+ /**
209
+ * Important (leaving `b` out for now (and `u` also)).
210
+ */
211
+ /**
212
+ * `small`: for less important information (not stylistic purposes).
213
+ */
214
+ /**
215
+ * `s`: represents contents no longer accurate/relevant.
216
+ */
217
+ /**
218
+ * `del` & `ins`: editorial markup.
219
+ *
220
+ */
221
+ /**
222
+ * Defining definition of a term.
223
+ *
224
+ * The paragraph, description list group, or section that is the nearest
225
+ * ancestor of the `dfn` element must also contain the definition(s) for the term
226
+ * given by the `dfn` element.
227
+ *
228
+ * Note: `abbr` can be nested inside `dfn`.
229
+ */
230
+ /**
231
+ * Abbreviations/acronyms.
232
+ *
233
+ * This styling removes any custom casing (mixing of u&lc chars in the `abbr`).
234
+ *
235
+ * Todo: test font stack fallbacks with the font-size adj.
236
+ */
237
+ /**
238
+ * Variables, eg. as used in mathematical expressions.
239
+ *
240
+ * We also provide semantic support for nested vars, and things like indices.
241
+ */
242
+ /**
243
+ * Code snippets and code blocks.
244
+ */
245
+ /**
246
+ * Pre-formatted text set by typographic characters.
247
+ */
248
+ /**
249
+ * Keyboard strokes.
250
+ */
251
+ /**
252
+ * Horizontal rule, used for paragraph-level thematic breaks.
253
+ */
254
+ }
255
+
256
+ .uikit-body a {
257
+ -webkit-text-decoration-skip: objects;
258
+ color: #313131;
259
+ text-decoration: none;
260
+ border-bottom: solid 1px #1B7991;
261
+ transition: background-color 0.1s ease-in-out, border-color 0.1s ease-in-out;
262
+ }
263
+
264
+ .uikit-body a:hover, .uikit-body a:focus {
265
+ background-color: #5bcbe3;
266
+ border-color: transparent;
267
+ }
268
+
269
+ .uikit-body a:focus {
270
+ outline: 1px solid #313131;
271
+ outline-offset: 1px;
272
+ }
273
+
274
+ .uikit-body a[rel~='external']:after {
275
+ content: ' ';
276
+ display: inline-block;
277
+ width: 0.7em;
278
+ height: 0.8em;
279
+ margin: 0 0.1em 0 0.25em;
280
+ background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E\a %3Cpath fill='%231B7991' d='M24.002 8C15.155 8 8 15.164 8 24.002v79.996C8 112.845 15.164 120 24.002 120h79.996c8.847 0 16.002-7.164\a 16.002-16.002V82.005c0-1.107-.895-2.005-1.994-2.005h-12.012c-1.1 0-1.994.893-1.994 1.995v16.008c0 3.312-2.685 5.997-5.997 5.997H29.997C26.685\a 104 24 101.315 24 98.003V29.997C24 26.685 26.685 24 29.997 24h16.008C47.107 24 48 23.105 48 22.006V9.994C48 8.894 47.103 8 45.995 8H24.002z'/%3E\a %3Cpath fill='%231B7991' d='M127.416.584c-.36-.36-.86-.584-1.41-.584H73.994C72.904 0 72 .893 72 1.994v12.012c0 1.1.892 1.994 1.993 1.994H96L49.41\a 62.59c-.777.777-.774 2.046.01 2.83l13.16 13.16c.793.793 2.052.788 2.83.01L112 32v22.007c0 1.09.893 1.993 1.994 1.993h12.012c1.1 0 1.994-.892\a 1.994-1.993V1.993c0-.545-.223-1.043-.584-1.405V.584z'/%3E\a %3C/svg%3E");
281
+ background-repeat: no-repeat;
282
+ background-position-y: 0.12em;
283
+ }
284
+
285
+ .ie8 .uikit-body a[rel~='external']:after,
286
+ .lt-ie8 .uikit-body a[rel~='external']:after {
287
+ content: '⇗';
288
+ color: #1B7991;
289
+ }
290
+
291
+ .uikit-body [tabindex="0"]:focus,
292
+ .uikit-body :target {
293
+ outline: 1px solid #313131;
294
+ outline-offset: 1px;
295
+ }
296
+
297
+ .uikit-body mark,
298
+ .uikit-body ::-moz-selection {
299
+ background-color: rgba(250, 194, 102, 0.5);
300
+ }
301
+
302
+ .uikit-body mark,
303
+ .uikit-body ::selection {
304
+ background-color: rgba(250, 194, 102, 0.5);
305
+ }
306
+
307
+ .uikit-body p {
308
+ max-width: 42em;
309
+ margin: 0 0 1.6em 0;
310
+ }
311
+
312
+ .uikit-body ul,
313
+ .uikit-body ol,
314
+ .uikit-body dl,
315
+ .uikit-body pre {
316
+ margin-top: 0;
317
+ margin-bottom: 1.6em;
318
+ }
319
+
320
+ .uikit-body ul,
321
+ .uikit-body ol,
322
+ .uikit-body dd {
323
+ margin-left: 0;
324
+ padding-left: 1.6em;
325
+ }
326
+
327
+ .uikit-body ul > li,
328
+ .uikit-body ol > li {
329
+ margin-bottom: 0.4em;
330
+ }
331
+
332
+ .uikit-body ul > li > ul,
333
+ .uikit-body ul > li > ol,
334
+ .uikit-body ol > li > ul,
335
+ .uikit-body ol > li > ol {
336
+ margin-top: 0.4em;
337
+ margin-bottom: 0.8em;
338
+ }
339
+
340
+ .uikit-body ul > ul,
341
+ .uikit-body ol > ul {
342
+ list-style-type: disc;
343
+ }
344
+
345
+ .uikit-body dl > dd {
346
+ margin-bottom: 1.6em;
347
+ }
348
+
349
+ .uikit-body dl > dt {
350
+ font-weight: bold;
351
+ margin-top: 0.8em;
352
+ margin-bottom: 0.8em;
353
+ }
354
+
355
+ .uikit-body dl > dt:first-of-type {
356
+ margin-top: 0;
357
+ }
358
+
359
+ .uikit-body em,
360
+ .uikit-body i {
361
+ font-style: italic;
362
+ }
363
+
364
+ .uikit-body strong {
365
+ font-weight: bold;
366
+ }
367
+
368
+ .uikit-body small {
369
+ font-size: 87.5%;
370
+ color: #464646;
371
+ }
372
+
373
+ .uikit-body s {
374
+ text-decoration: line-through;
375
+ }
376
+
377
+ .uikit-body del {
378
+ text-decoration: line-through;
379
+ color: #5a5a5a;
380
+ }
381
+
382
+ .uikit-body ins {
383
+ -webkit-text-decoration-line: underline;
384
+ text-decoration-line: underline;
385
+ -webkit-text-decoration-style: dashed;
386
+ text-decoration-style: dashed;
387
+ }
388
+
389
+ .uikit-body dfn {
390
+ font-style: normal;
391
+ }
392
+
393
+ .uikit-body abbr,
394
+ .uikit-body abbr[title] {
395
+ font-size: 18px;
396
+ font-variant: small-caps;
397
+ text-transform: lowercase;
398
+ letter-spacing: 1px;
399
+ text-decoration: none;
400
+ border-bottom: 1px dotted #555;
401
+ cursor: help;
402
+ }
403
+
404
+ .uikit-body a abbr {
405
+ padding-bottom: 1px;
406
+ }
407
+
408
+ .uikit-body var {
409
+ padding: 0 1px;
410
+ font-style: italic;
411
+ font-family: serif;
412
+ }
413
+
414
+ .uikit-body var sup,
415
+ .uikit-body var sub {
416
+ font-family: "Open Sans", Verdana, "Bitstream Vera Sans", sans-serif;
417
+ font-style: normal;
418
+ padding: 0 1px;
419
+ }
420
+
421
+ .uikit-body sub,
422
+ .uikit-body sup {
423
+ font-size: 75%;
424
+ line-height: 0;
425
+ position: relative;
426
+ vertical-align: baseline;
427
+ }
428
+
429
+ .uikit-body sub {
430
+ bottom: -0.25em;
431
+ }
432
+
433
+ .uikit-body sup {
434
+ top: -0.5em;
435
+ }
436
+
437
+ .uikit-body code,
438
+ .uikit-body kbd,
439
+ .uikit-body pre {
440
+ font-family: "Lucida Sans Typewriter", "Lucida Console", Monaco, "Bitstream Vera Sans Mono", monospace;
441
+ }
442
+
443
+ .uikit-body pre code,
444
+ .uikit-body pre samp,
445
+ .uikit-body pre kbd {
446
+ font-size: 14px;
447
+ }
448
+
449
+ .uikit-body kbd {
450
+ display: inline-block;
451
+ font-size: 14px;
452
+ border: solid 1px #8dbcc8;
453
+ border-radius: 3px;
454
+ box-shadow: 0 1px 0 0 #00bfe9;
455
+ background-color: #fefefe;
456
+ text-align: center;
457
+ padding: 0 0.8em;
458
+ margin: 0 2px;
459
+ }
460
+
461
+ .uikit-body hr {
462
+ box-sizing: content-box;
463
+ height: 0;
464
+ overflow: visible;
465
+ border: none;
466
+ border-top: 1px solid #555;
467
+ margin-bottom: 1.6em;
468
+ }
469
+
470
+ /*! @gov.au/link-list v0.1.0 */
471
+ /**
472
+ * Block of links.
473
+ */
474
+ .uikit-link-list {
475
+ display: block;
476
+ list-style-type: none;
477
+ }
478
+
479
+ .uikit-body .uikit-link-list {
480
+ margin: 0;
481
+ padding: 0.4em 0;
482
+ }
483
+
484
+ .uikit-link-list > li {
485
+ display: block;
486
+ margin: 0.4em;
487
+ }
488
+
489
+ .uikit-link-list.uikit-link-list--inline {
490
+ display: inline-block;
491
+ }
492
+
493
+ .uikit-link-list.uikit-link-list--inline > li {
494
+ display: inline-block;
495
+ }
496
+
497
+ .uikit-link-list.uikit-link-list--inverted {
498
+ background-color: #313131;
499
+ -webkit-font-smoothing: antialiased;
500
+ -moz-osx-font-smoothing: grayscale;
501
+ }
502
+
503
+ .uikit-link-list.uikit-link-list--inverted > li > a {
504
+ color: #fff;
505
+ border-color: #5bcbe3;
506
+ transition: color 0.1s ease-in-out;
507
+ }
508
+
509
+ .uikit-link-list.uikit-link-list--inverted > li > a:hover, .uikit-link-list.uikit-link-list--inverted > li > a:focus {
510
+ background-color: #5bcbe3;
511
+ color: #313131;
512
+ }
513
+
514
+ /*! @gov.au/breadcrumbs v0.1.0 */
515
+ @media print {
516
+ .uikit-breadcrumbs > .uikit-link-list > li:after {
517
+ border-color: #000 !important;
518
+ }
519
+ }
520
+
521
+ .uikit-breadcrumbs {
522
+ display: none;
523
+ width: 100%;
524
+ margin: 0;
525
+ color: #313131;
526
+ font-size: 14px;
527
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
528
+ }
529
+
530
+ @media (min-width: 768px) {
531
+ .uikit-breadcrumbs {
532
+ display: inline-block;
533
+ }
534
+ }
535
+
536
+ .uikit-breadcrumbs > .uikit-link-list > li {
537
+ margin: 0;
538
+ }
539
+
540
+ .uikit-breadcrumbs > .uikit-link-list > li:after {
541
+ content: ' ';
542
+ display: inline-block;
543
+ width: 0.8em;
544
+ height: 0.8em;
545
+ margin: 0 0.8em;
546
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E\a %3Cpath fill='%23555' d='M128 64l-64 64-16-16 64-64'/%3E\a %3Cpath fill='%23555' d='M128 64l-16 16-64-64L64 0'/%3E\a %3C/svg%3E");
547
+ }
548
+
549
+ .uikit-breadcrumbs > .uikit-link-list > li:last-child:after {
550
+ display: none;
551
+ }
552
+
553
+ .ie8 .uikit-breadcrumbs > .uikit-link-list > li:after,
554
+ .lt-ie8 .uikit-breadcrumbs > .uikit-link-list > li:after {
555
+ content: ' > ';
556
+ display: inline-block;
557
+ border: none;
558
+ }
559
+
560
+ .uikit-breadcrumbs.uikit-breadcrumbs--inverted {
561
+ color: #fff;
562
+ }
563
+
564
+ .uikit-breadcrumbs.uikit-breadcrumbs--inverted > .uikit-link-list > li:not(:last-child):after {
565
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E\a %3Cpath fill='%23fff' d='M128 64l-64 64-16-16 64-64'/%3E\a %3Cpath fill='%23fff' d='M128 64l-16 16-64-64L64 0'/%3E\a %3C/svg%3E");
566
+ }
567
+
568
+ /*! @gov.au/buttons v0.3.0 */
569
+ @media print {
570
+ .uikit-btn {
571
+ background-color: #fff !important;
572
+ border: 2px solid #000 !important;
573
+ color: #000 !important;
574
+ }
575
+ .uikit-btn:disabled {
576
+ background-color: #ccc !important;
577
+ }
578
+ }
579
+
580
+ .uikit-btn {
581
+ display: inline-block;
582
+ -webkit-appearance: none;
583
+ border: none;
584
+ background: none;
585
+ font-size: 17px;
586
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
587
+ font-weight: bold;
588
+ color: #fff;
589
+ text-decoration: none;
590
+ border-radius: 3px;
591
+ background-color: #1B7991;
592
+ padding: 0.8em 1.2em;
593
+ cursor: pointer;
594
+ transition: background 0.1s ease;
595
+ }
596
+
597
+ .uikit-btn:focus, .uikit-btn:hover {
598
+ background-color: #135566;
599
+ }
600
+
601
+ .uikit-btn:focus {
602
+ outline: 1px solid #313131;
603
+ outline-offset: 1px;
604
+ }
605
+
606
+ .uikit-btn:disabled {
607
+ background-color: #cccccc;
608
+ font-weight: normal;
609
+ color: #313131;
610
+ border: 1px dotted #313131;
611
+ cursor: not-allowed;
612
+ }
613
+
614
+ .uikit-btn:disabled:focus, .uikit-btn:disabled:hover {
615
+ background-color: #cccccc;
616
+ }
617
+
618
+ /**
619
+ * SECONDARY
620
+ */
621
+ .uikit-btn--secondary {
622
+ background-color: #313131;
623
+ }
624
+
625
+ .uikit-btn--secondary:focus, .uikit-btn--secondary:hover {
626
+ background-color: #6f6f6f;
627
+ }
628
+
629
+ /**
630
+ * TERTIARY
631
+ */
632
+ .uikit-btn--tertiary {
633
+ background-color: #fff;
634
+ color: #313131;
635
+ border: 1px solid #1B7991;
636
+ }
637
+
638
+ .uikit-btn--tertiary:focus, .uikit-btn--tertiary:hover {
639
+ background-color: #e8f2f4;
640
+ }
641
+
642
+ /**
643
+ * BLOCK
644
+ */
645
+ .uikit-btn--block {
646
+ display: block;
647
+ width: 100%;
648
+ box-sizing: border-box;
649
+ text-align: center;
650
+ }
651
+
652
+ .uikit-btn--block + .uikit-btn--block {
653
+ margin-top: 0.4em;
654
+ }
655
+
656
+ /*! @gov.au/callout v0.1.0 */
657
+ @media print {
658
+ .uikit-callout {
659
+ border-top: 1px solid #000 !important;
660
+ border-right: 1px solid #000 !important;
661
+ border-bottom: 1px solid #000 !important;
662
+ }
663
+ }
664
+
665
+ /**
666
+ * The generic callout.
667
+ */
668
+ .uikit-callout {
669
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
670
+ color: #313131;
671
+ line-height: 1.6;
672
+ margin: 1.6em 0.4em;
673
+ padding: 1.2em 1.2em 1.2em 0.8em;
674
+ border-left: 6px solid #00bfe9;
675
+ border-radius: 3px;
676
+ box-shadow: 2px 0 6px rgba(49, 49, 49, 0.7);
677
+ max-width: 42em;
678
+ }
679
+
680
+ .uikit-callout :first-child {
681
+ margin-top: 0;
682
+ }
683
+
684
+ .uikit-callout :last-child {
685
+ margin-bottom: 0;
686
+ }
687
+
688
+ .ie8 .uikit-callout,
689
+ .lt-ie8 .uikit-callout {
690
+ border-top: 1px solid #555;
691
+ border-right: 1px solid #555;
692
+ border-bottom: 1px solid #555;
693
+ }
694
+
695
+ /**
696
+ * The calendar event callout
697
+ */
698
+ .uikit-callout--calendar-event {
699
+ background-color: #f0f3f5;
700
+ }
701
+
702
+ .uikit-callout--calendar-event__lede,
703
+ .uikit-callout--calendar-event__time,
704
+ .uikit-callout--calendar-event__name {
705
+ display: block;
706
+ }
707
+
708
+ .uikit-callout--calendar-event__lede,
709
+ .uikit-callout--calendar-event__time,
710
+ .uikit-callout--calendar-event__name {
711
+ margin-bottom: 0.8em;
712
+ }
713
+
714
+ .uikit-callout--calendar-event__lede {
715
+ font-size: 18px;
716
+ }
717
+
718
+ .uikit-callout--calendar-event__time,
719
+ .uikit-callout--calendar-event__name {
720
+ font-size: 32px;
721
+ }
722
+
723
+ .uikit-callout--calendar-event__time {
724
+ font-weight: bold;
725
+ margin-bottom: 0;
726
+ }
727
+
728
+ /*! @gov.au/control-input v0.1.0 */
729
+ @media print {
730
+ .uikit-control-input__text:after {
731
+ display: none !important;
732
+ }
733
+ }
734
+
735
+ .uikit-control-input {
736
+ display: inline-block;
737
+ position: relative;
738
+ }
739
+
740
+ .uikit-control-input__input {
741
+ display: inline-block;
742
+ line-height: 1.6;
743
+ margin: 0 0px 0 7px;
744
+ }
745
+
746
+ .uikit-control-input__input:hover {
747
+ cursor: pointer;
748
+ }
749
+
750
+ .uikit-control-input__input:hover + .uikit-control-input__text {
751
+ cursor: pointer;
752
+ }
753
+
754
+ .uikit-control-input__input[type=checkbox] + .uikit-control-input__text:after {
755
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E\a %3Cpath fill='%23313131' d='M0 0h128v128H0z'/%3E\a %3Cpath fill='%23fff' d='M8 8h112v112H8z'/%3E\a %3C/svg%3E");
756
+ }
757
+
758
+ .uikit-control-input__input[type=checkbox]:checked + .uikit-control-input__text:after {
759
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E\a %3Cpath fill='%23313131' d='M0 0h128v128H0z'/%3E\a %3Cpath fill='%23fff' d='M8 8h112v112H8z'/%3E\a %3Cpath fill='%23313131' d='M16 16h96v96H16z'/%3E\a %3Cpath fill='%23fff' d='M102.59 45.41c.778-.778.782-2.038-.002-2.822l-9.176-9.176c-.78-.78-2.052-.772-2.823 0L56 68 41.42\a 53.42c-.784-.784-2.048-.792-2.832-.008l-9.176 9.176c-.78.78-.775 2.05-.004 2.82l25.184 25.184c.778.778 2.04.775 2.82-.003l45.177-45.18z'/%3E\a %3C/svg%3E");
760
+ }
761
+
762
+ .uikit-control-input--full > .uikit-control-input__input[type=checkbox] + .uikit-control-input__text:after {
763
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E\a %3Cpath fill='%23313131' d='M0 0h128v128H0z'/%3E\a %3Cpath fill='%23fff' d='M8 8h112v112H8z'/%3E\a %3C/svg%3E");
764
+ }
765
+
766
+ .uikit-control-input--full > .uikit-control-input__input[type=checkbox]:checked + .uikit-control-input__text:after {
767
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E\a %3Cpath fill='%23313131' d='M0 0h128v128H0z'/%3E\a %3Cpath fill='%23fff' d='M8 8h112v112H8z'/%3E\a %3Cpath fill='%23313131' d='M16 16h96v96H16z'/%3E\a %3C/svg%3E");
768
+ }
769
+
770
+ .uikit-control-input__input[type=radio] + .uikit-control-input__text:after {
771
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E\a %3Ccircle fill='%23313131' cx='64' cy='64' r='64'/%3E\a %3Ccircle fill='%23fff' cx='64' cy='64' r='56'/%3E\a %3C/svg%3E");
772
+ }
773
+
774
+ .uikit-control-input__input[type=radio]:checked + .uikit-control-input__text:after {
775
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E\a %3Ccircle fill='%23313131' cx='64' cy='64' r='64'/%3E\a %3Ccircle fill='%23fff' cx='64' cy='64' r='56'/%3E\a %3Ccircle fill='%23313131' cx='64' cy='64' r='44'/%3E\a %3Cpath fill='%23fff' fill-rule='nonzero' d='M94.588 53.412c.78-.78.784-2.04 0-2.824l-9.176-9.176c-.78-.78-2.05-.775-2.82-.004L56 68 45.412\a 57.412c-.78-.78-2.04-.784-2.824 0l-9.176 9.176c-.78.78-.782 2.042 0 2.824l21.176 21.176c.78.78 2.04.784 2.824 0l37.176-37.176z'/%3E\a %3C/svg%3E");
776
+ }
777
+
778
+ .uikit-control-input--full > .uikit-control-input__input[type=radio] + .uikit-control-input__text:after {
779
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E\a %3Ccircle fill='%23313131' cx='64' cy='64' r='64'/%3E\a %3Ccircle fill='%23fff' cx='64' cy='64' r='56'/%3E\a %3C/svg%3E");
780
+ }
781
+
782
+ .uikit-control-input--full > .uikit-control-input__input[type=radio]:checked + .uikit-control-input__text:after {
783
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E\a %3Ccircle fill='%23313131' cx='64' cy='64' r='64'/%3E\a %3Ccircle fill='%23fff' cx='64' cy='64' r='56'/%3E\a %3Ccircle fill='%23313131' cx='64' cy='64' r='44'/%3E\a %3C/svg%3E");
784
+ }
785
+
786
+ .uikit-control-input__input:checked + .uikit-control-input__text {
787
+ font-weight: bold;
788
+ }
789
+
790
+ .uikit-control-input__input:focus + .uikit-control-input__text {
791
+ outline: 1px solid #313131;
792
+ outline-offset: 1px;
793
+ }
794
+
795
+ .uikit-control-input__input:disabled + .uikit-control-input__text {
796
+ color: #6f6f6f;
797
+ }
798
+
799
+ .uikit-control-input__input:disabled + .uikit-control-input__text:before {
800
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E\a %3Cpath fill='rgba(255, 255, 255, 0.3)' d='M0 0h128v128H0z'/%3E\a %3C/svg%3E");
801
+ z-index: 2;
802
+ }
803
+
804
+ .uikit-control-input__input:disabled:hover {
805
+ cursor: not-allowed;
806
+ }
807
+
808
+ .uikit-control-input__input:disabled:hover + .uikit-control-input__text {
809
+ cursor: not-allowed;
810
+ }
811
+
812
+ /**
813
+ * The label text
814
+ */
815
+ .uikit-control-input__text {
816
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
817
+ color: #313131;
818
+ line-height: 1.6;
819
+ font-size: 17px;
820
+ margin-left: 12px;
821
+ }
822
+
823
+ .uikit-control-input__text:before, .uikit-control-input__text:after {
824
+ content: ' ';
825
+ display: block;
826
+ position: absolute;
827
+ left: 0;
828
+ top: 0;
829
+ width: 27px;
830
+ height: 27px;
831
+ background-repeat: no-repeat;
832
+ z-index: 1;
833
+ }
834
+
835
+ /*! @gov.au/footer v0.1.0 */
836
+ @media print {
837
+ .uikit-footer {
838
+ background: #fff !important;
839
+ border-color: #000 !important;
840
+ }
841
+ }
842
+
843
+ /**
844
+ * Basic footer block styling.
845
+ */
846
+ .uikit-footer {
847
+ background-color: #f0f3f5;
848
+ border-top: 6px solid #555;
849
+ padding: 1.6em;
850
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
851
+ color: #313131;
852
+ }
853
+
854
+ .uikit-footer p:last-child {
855
+ margin: 0;
856
+ }
857
+
858
+ /**
859
+ * Footer `nav` navigation styling.
860
+ */
861
+ .uikit-footer__navigation .uikit-link-list > li {
862
+ margin-left: 0;
863
+ }
864
+
865
+ .uikit-footer__navigation + .uikit-footer__end {
866
+ padding-top: 1.6em;
867
+ border-top: 1px solid #555;
868
+ margin-top: 1.6em;
869
+ }
870
+
871
+ /*! @gov.au/grid-12 v0.1.0 */
872
+ /**
873
+ * Iterates through all 12 columns (≥2) to calculate the correct amount of left
874
+ * and right padding for each of the classes.
875
+ */
876
+ /**
877
+ * Iterates through the columns to create a new list and then sets the float.
878
+ */
879
+ /**
880
+ * Calculates the correct widths as a percentage based on the column count,
881
+ * column breakpoint class, and type (pull or offset).
882
+ */
883
+ /**
884
+ * Calls the above mixins and combines them.
885
+ */
886
+ /**
887
+ * Finally, we create the grid and all the necessary classes.
888
+ */
889
+ .uikit-grid .container {
890
+ box-sizing: border-box;
891
+ }
892
+
893
+ @media (min-width: 768px) {
894
+ .uikit-grid .container {
895
+ width: 744px;
896
+ }
897
+ }
898
+
899
+ @media (min-width: 992px) {
900
+ .uikit-grid .container {
901
+ width: 968px;
902
+ }
903
+ }
904
+
905
+ @media (min-width: 1200px) {
906
+ .uikit-grid .container {
907
+ width: 1176px;
908
+ }
909
+ }
910
+
911
+ .uikit-grid .container,
912
+ .uikit-grid .container-fluid {
913
+ box-sizing: border-box;
914
+ margin-right: auto;
915
+ margin-left: auto;
916
+ padding-left: 12px;
917
+ padding-right: 12px;
918
+ }
919
+
920
+ .uikit-grid .container:before, .uikit-grid .container:after,
921
+ .uikit-grid .container-fluid:before,
922
+ .uikit-grid .container-fluid:after {
923
+ content: " ";
924
+ display: table;
925
+ }
926
+
927
+ .uikit-grid .container:after,
928
+ .uikit-grid .container-fluid:after {
929
+ clear: both;
930
+ }
931
+
932
+ .uikit-grid .row {
933
+ margin-left: -12px;
934
+ margin-right: -12px;
935
+ }
936
+
937
+ .uikit-grid .row:before, .uikit-grid .row:after {
938
+ content: " ";
939
+ display: table;
940
+ }
941
+
942
+ .uikit-grid .row:after {
943
+ clear: both;
944
+ }
945
+
946
+ .uikit-grid .col-xs-1, .uikit-grid .col-sm-1, .uikit-grid .col-md-1, .uikit-grid .col-lg-1, .uikit-grid .col-xs-2, .uikit-grid .col-sm-2, .uikit-grid .col-md-2, .uikit-grid .col-lg-2, .uikit-grid .col-xs-3, .uikit-grid .col-sm-3, .uikit-grid .col-md-3, .uikit-grid .col-lg-3, .uikit-grid .col-xs-4, .uikit-grid .col-sm-4, .uikit-grid .col-md-4, .uikit-grid .col-lg-4, .uikit-grid .col-xs-5, .uikit-grid .col-sm-5, .uikit-grid .col-md-5, .uikit-grid .col-lg-5, .uikit-grid .col-xs-6, .uikit-grid .col-sm-6, .uikit-grid .col-md-6, .uikit-grid .col-lg-6, .uikit-grid .col-xs-7, .uikit-grid .col-sm-7, .uikit-grid .col-md-7, .uikit-grid .col-lg-7, .uikit-grid .col-xs-8, .uikit-grid .col-sm-8, .uikit-grid .col-md-8, .uikit-grid .col-lg-8, .uikit-grid .col-xs-9, .uikit-grid .col-sm-9, .uikit-grid .col-md-9, .uikit-grid .col-lg-9, .uikit-grid .col-xs-10, .uikit-grid .col-sm-10, .uikit-grid .col-md-10, .uikit-grid .col-lg-10, .uikit-grid .col-xs-11, .uikit-grid .col-sm-11, .uikit-grid .col-md-11, .uikit-grid .col-lg-11, .uikit-grid .col-xs-12, .uikit-grid .col-sm-12, .uikit-grid .col-md-12, .uikit-grid .col-lg-12 {
947
+ box-sizing: border-box;
948
+ position: relative;
949
+ min-height: 1px;
950
+ padding-left: 12px;
951
+ padding-right: 12px;
952
+ }
953
+
954
+ .uikit-grid .col-xs-1, .uikit-grid .col-xs-2, .uikit-grid .col-xs-3, .uikit-grid .col-xs-4, .uikit-grid .col-xs-5, .uikit-grid .col-xs-6, .uikit-grid .col-xs-7, .uikit-grid .col-xs-8, .uikit-grid .col-xs-9, .uikit-grid .col-xs-10, .uikit-grid .col-xs-11, .uikit-grid .col-xs-12 {
955
+ float: left;
956
+ }
957
+
958
+ .uikit-grid .col-xs-1 {
959
+ width: 8.33333%;
960
+ }
961
+
962
+ .uikit-grid .col-xs-2 {
963
+ width: 16.66667%;
964
+ }
965
+
966
+ .uikit-grid .col-xs-3 {
967
+ width: 25%;
968
+ }
969
+
970
+ .uikit-grid .col-xs-4 {
971
+ width: 33.33333%;
972
+ }
973
+
974
+ .uikit-grid .col-xs-5 {
975
+ width: 41.66667%;
976
+ }
977
+
978
+ .uikit-grid .col-xs-6 {
979
+ width: 50%;
980
+ }
981
+
982
+ .uikit-grid .col-xs-7 {
983
+ width: 58.33333%;
984
+ }
985
+
986
+ .uikit-grid .col-xs-8 {
987
+ width: 66.66667%;
988
+ }
989
+
990
+ .uikit-grid .col-xs-9 {
991
+ width: 75%;
992
+ }
993
+
994
+ .uikit-grid .col-xs-10 {
995
+ width: 83.33333%;
996
+ }
997
+
998
+ .uikit-grid .col-xs-11 {
999
+ width: 91.66667%;
1000
+ }
1001
+
1002
+ .uikit-grid .col-xs-12 {
1003
+ width: 100%;
1004
+ }
1005
+
1006
+ .uikit-grid .col-xs-pull-0 {
1007
+ right: auto;
1008
+ }
1009
+
1010
+ .uikit-grid .col-xs-pull-1 {
1011
+ right: 8.33333%;
1012
+ }
1013
+
1014
+ .uikit-grid .col-xs-pull-2 {
1015
+ right: 16.66667%;
1016
+ }
1017
+
1018
+ .uikit-grid .col-xs-pull-3 {
1019
+ right: 25%;
1020
+ }
1021
+
1022
+ .uikit-grid .col-xs-pull-4 {
1023
+ right: 33.33333%;
1024
+ }
1025
+
1026
+ .uikit-grid .col-xs-pull-5 {
1027
+ right: 41.66667%;
1028
+ }
1029
+
1030
+ .uikit-grid .col-xs-pull-6 {
1031
+ right: 50%;
1032
+ }
1033
+
1034
+ .uikit-grid .col-xs-pull-7 {
1035
+ right: 58.33333%;
1036
+ }
1037
+
1038
+ .uikit-grid .col-xs-pull-8 {
1039
+ right: 66.66667%;
1040
+ }
1041
+
1042
+ .uikit-grid .col-xs-pull-9 {
1043
+ right: 75%;
1044
+ }
1045
+
1046
+ .uikit-grid .col-xs-pull-10 {
1047
+ right: 83.33333%;
1048
+ }
1049
+
1050
+ .uikit-grid .col-xs-pull-11 {
1051
+ right: 91.66667%;
1052
+ }
1053
+
1054
+ .uikit-grid .col-xs-pull-12 {
1055
+ right: 100%;
1056
+ }
1057
+
1058
+ .uikit-grid .col-xs-push-0 {
1059
+ left: auto;
1060
+ }
1061
+
1062
+ .uikit-grid .col-xs-push-1 {
1063
+ left: 8.33333%;
1064
+ }
1065
+
1066
+ .uikit-grid .col-xs-push-2 {
1067
+ left: 16.66667%;
1068
+ }
1069
+
1070
+ .uikit-grid .col-xs-push-3 {
1071
+ left: 25%;
1072
+ }
1073
+
1074
+ .uikit-grid .col-xs-push-4 {
1075
+ left: 33.33333%;
1076
+ }
1077
+
1078
+ .uikit-grid .col-xs-push-5 {
1079
+ left: 41.66667%;
1080
+ }
1081
+
1082
+ .uikit-grid .col-xs-push-6 {
1083
+ left: 50%;
1084
+ }
1085
+
1086
+ .uikit-grid .col-xs-push-7 {
1087
+ left: 58.33333%;
1088
+ }
1089
+
1090
+ .uikit-grid .col-xs-push-8 {
1091
+ left: 66.66667%;
1092
+ }
1093
+
1094
+ .uikit-grid .col-xs-push-9 {
1095
+ left: 75%;
1096
+ }
1097
+
1098
+ .uikit-grid .col-xs-push-10 {
1099
+ left: 83.33333%;
1100
+ }
1101
+
1102
+ .uikit-grid .col-xs-push-11 {
1103
+ left: 91.66667%;
1104
+ }
1105
+
1106
+ .uikit-grid .col-xs-push-12 {
1107
+ left: 100%;
1108
+ }
1109
+
1110
+ .uikit-grid .col-xs-offset-0 {
1111
+ margin-left: 0%;
1112
+ }
1113
+
1114
+ .uikit-grid .col-xs-offset-1 {
1115
+ margin-left: 8.33333%;
1116
+ }
1117
+
1118
+ .uikit-grid .col-xs-offset-2 {
1119
+ margin-left: 16.66667%;
1120
+ }
1121
+
1122
+ .uikit-grid .col-xs-offset-3 {
1123
+ margin-left: 25%;
1124
+ }
1125
+
1126
+ .uikit-grid .col-xs-offset-4 {
1127
+ margin-left: 33.33333%;
1128
+ }
1129
+
1130
+ .uikit-grid .col-xs-offset-5 {
1131
+ margin-left: 41.66667%;
1132
+ }
1133
+
1134
+ .uikit-grid .col-xs-offset-6 {
1135
+ margin-left: 50%;
1136
+ }
1137
+
1138
+ .uikit-grid .col-xs-offset-7 {
1139
+ margin-left: 58.33333%;
1140
+ }
1141
+
1142
+ .uikit-grid .col-xs-offset-8 {
1143
+ margin-left: 66.66667%;
1144
+ }
1145
+
1146
+ .uikit-grid .col-xs-offset-9 {
1147
+ margin-left: 75%;
1148
+ }
1149
+
1150
+ .uikit-grid .col-xs-offset-10 {
1151
+ margin-left: 83.33333%;
1152
+ }
1153
+
1154
+ .uikit-grid .col-xs-offset-11 {
1155
+ margin-left: 91.66667%;
1156
+ }
1157
+
1158
+ .uikit-grid .col-xs-offset-12 {
1159
+ margin-left: 100%;
1160
+ }
1161
+
1162
+ @media (min-width: 768px) {
1163
+ .uikit-grid .col-sm-1, .uikit-grid .col-sm-2, .uikit-grid .col-sm-3, .uikit-grid .col-sm-4, .uikit-grid .col-sm-5, .uikit-grid .col-sm-6, .uikit-grid .col-sm-7, .uikit-grid .col-sm-8, .uikit-grid .col-sm-9, .uikit-grid .col-sm-10, .uikit-grid .col-sm-11, .uikit-grid .col-sm-12 {
1164
+ float: left;
1165
+ }
1166
+ .uikit-grid .col-sm-1 {
1167
+ width: 8.33333%;
1168
+ }
1169
+ .uikit-grid .col-sm-2 {
1170
+ width: 16.66667%;
1171
+ }
1172
+ .uikit-grid .col-sm-3 {
1173
+ width: 25%;
1174
+ }
1175
+ .uikit-grid .col-sm-4 {
1176
+ width: 33.33333%;
1177
+ }
1178
+ .uikit-grid .col-sm-5 {
1179
+ width: 41.66667%;
1180
+ }
1181
+ .uikit-grid .col-sm-6 {
1182
+ width: 50%;
1183
+ }
1184
+ .uikit-grid .col-sm-7 {
1185
+ width: 58.33333%;
1186
+ }
1187
+ .uikit-grid .col-sm-8 {
1188
+ width: 66.66667%;
1189
+ }
1190
+ .uikit-grid .col-sm-9 {
1191
+ width: 75%;
1192
+ }
1193
+ .uikit-grid .col-sm-10 {
1194
+ width: 83.33333%;
1195
+ }
1196
+ .uikit-grid .col-sm-11 {
1197
+ width: 91.66667%;
1198
+ }
1199
+ .uikit-grid .col-sm-12 {
1200
+ width: 100%;
1201
+ }
1202
+ .uikit-grid .col-sm-pull-0 {
1203
+ right: auto;
1204
+ }
1205
+ .uikit-grid .col-sm-pull-1 {
1206
+ right: 8.33333%;
1207
+ }
1208
+ .uikit-grid .col-sm-pull-2 {
1209
+ right: 16.66667%;
1210
+ }
1211
+ .uikit-grid .col-sm-pull-3 {
1212
+ right: 25%;
1213
+ }
1214
+ .uikit-grid .col-sm-pull-4 {
1215
+ right: 33.33333%;
1216
+ }
1217
+ .uikit-grid .col-sm-pull-5 {
1218
+ right: 41.66667%;
1219
+ }
1220
+ .uikit-grid .col-sm-pull-6 {
1221
+ right: 50%;
1222
+ }
1223
+ .uikit-grid .col-sm-pull-7 {
1224
+ right: 58.33333%;
1225
+ }
1226
+ .uikit-grid .col-sm-pull-8 {
1227
+ right: 66.66667%;
1228
+ }
1229
+ .uikit-grid .col-sm-pull-9 {
1230
+ right: 75%;
1231
+ }
1232
+ .uikit-grid .col-sm-pull-10 {
1233
+ right: 83.33333%;
1234
+ }
1235
+ .uikit-grid .col-sm-pull-11 {
1236
+ right: 91.66667%;
1237
+ }
1238
+ .uikit-grid .col-sm-pull-12 {
1239
+ right: 100%;
1240
+ }
1241
+ .uikit-grid .col-sm-push-0 {
1242
+ left: auto;
1243
+ }
1244
+ .uikit-grid .col-sm-push-1 {
1245
+ left: 8.33333%;
1246
+ }
1247
+ .uikit-grid .col-sm-push-2 {
1248
+ left: 16.66667%;
1249
+ }
1250
+ .uikit-grid .col-sm-push-3 {
1251
+ left: 25%;
1252
+ }
1253
+ .uikit-grid .col-sm-push-4 {
1254
+ left: 33.33333%;
1255
+ }
1256
+ .uikit-grid .col-sm-push-5 {
1257
+ left: 41.66667%;
1258
+ }
1259
+ .uikit-grid .col-sm-push-6 {
1260
+ left: 50%;
1261
+ }
1262
+ .uikit-grid .col-sm-push-7 {
1263
+ left: 58.33333%;
1264
+ }
1265
+ .uikit-grid .col-sm-push-8 {
1266
+ left: 66.66667%;
1267
+ }
1268
+ .uikit-grid .col-sm-push-9 {
1269
+ left: 75%;
1270
+ }
1271
+ .uikit-grid .col-sm-push-10 {
1272
+ left: 83.33333%;
1273
+ }
1274
+ .uikit-grid .col-sm-push-11 {
1275
+ left: 91.66667%;
1276
+ }
1277
+ .uikit-grid .col-sm-push-12 {
1278
+ left: 100%;
1279
+ }
1280
+ .uikit-grid .col-sm-offset-0 {
1281
+ margin-left: 0%;
1282
+ }
1283
+ .uikit-grid .col-sm-offset-1 {
1284
+ margin-left: 8.33333%;
1285
+ }
1286
+ .uikit-grid .col-sm-offset-2 {
1287
+ margin-left: 16.66667%;
1288
+ }
1289
+ .uikit-grid .col-sm-offset-3 {
1290
+ margin-left: 25%;
1291
+ }
1292
+ .uikit-grid .col-sm-offset-4 {
1293
+ margin-left: 33.33333%;
1294
+ }
1295
+ .uikit-grid .col-sm-offset-5 {
1296
+ margin-left: 41.66667%;
1297
+ }
1298
+ .uikit-grid .col-sm-offset-6 {
1299
+ margin-left: 50%;
1300
+ }
1301
+ .uikit-grid .col-sm-offset-7 {
1302
+ margin-left: 58.33333%;
1303
+ }
1304
+ .uikit-grid .col-sm-offset-8 {
1305
+ margin-left: 66.66667%;
1306
+ }
1307
+ .uikit-grid .col-sm-offset-9 {
1308
+ margin-left: 75%;
1309
+ }
1310
+ .uikit-grid .col-sm-offset-10 {
1311
+ margin-left: 83.33333%;
1312
+ }
1313
+ .uikit-grid .col-sm-offset-11 {
1314
+ margin-left: 91.66667%;
1315
+ }
1316
+ .uikit-grid .col-sm-offset-12 {
1317
+ margin-left: 100%;
1318
+ }
1319
+ }
1320
+
1321
+ @media (min-width: 992px) {
1322
+ .uikit-grid .col-md-1, .uikit-grid .col-md-2, .uikit-grid .col-md-3, .uikit-grid .col-md-4, .uikit-grid .col-md-5, .uikit-grid .col-md-6, .uikit-grid .col-md-7, .uikit-grid .col-md-8, .uikit-grid .col-md-9, .uikit-grid .col-md-10, .uikit-grid .col-md-11, .uikit-grid .col-md-12 {
1323
+ float: left;
1324
+ }
1325
+ .uikit-grid .col-md-1 {
1326
+ width: 8.33333%;
1327
+ }
1328
+ .uikit-grid .col-md-2 {
1329
+ width: 16.66667%;
1330
+ }
1331
+ .uikit-grid .col-md-3 {
1332
+ width: 25%;
1333
+ }
1334
+ .uikit-grid .col-md-4 {
1335
+ width: 33.33333%;
1336
+ }
1337
+ .uikit-grid .col-md-5 {
1338
+ width: 41.66667%;
1339
+ }
1340
+ .uikit-grid .col-md-6 {
1341
+ width: 50%;
1342
+ }
1343
+ .uikit-grid .col-md-7 {
1344
+ width: 58.33333%;
1345
+ }
1346
+ .uikit-grid .col-md-8 {
1347
+ width: 66.66667%;
1348
+ }
1349
+ .uikit-grid .col-md-9 {
1350
+ width: 75%;
1351
+ }
1352
+ .uikit-grid .col-md-10 {
1353
+ width: 83.33333%;
1354
+ }
1355
+ .uikit-grid .col-md-11 {
1356
+ width: 91.66667%;
1357
+ }
1358
+ .uikit-grid .col-md-12 {
1359
+ width: 100%;
1360
+ }
1361
+ .uikit-grid .col-md-pull-0 {
1362
+ right: auto;
1363
+ }
1364
+ .uikit-grid .col-md-pull-1 {
1365
+ right: 8.33333%;
1366
+ }
1367
+ .uikit-grid .col-md-pull-2 {
1368
+ right: 16.66667%;
1369
+ }
1370
+ .uikit-grid .col-md-pull-3 {
1371
+ right: 25%;
1372
+ }
1373
+ .uikit-grid .col-md-pull-4 {
1374
+ right: 33.33333%;
1375
+ }
1376
+ .uikit-grid .col-md-pull-5 {
1377
+ right: 41.66667%;
1378
+ }
1379
+ .uikit-grid .col-md-pull-6 {
1380
+ right: 50%;
1381
+ }
1382
+ .uikit-grid .col-md-pull-7 {
1383
+ right: 58.33333%;
1384
+ }
1385
+ .uikit-grid .col-md-pull-8 {
1386
+ right: 66.66667%;
1387
+ }
1388
+ .uikit-grid .col-md-pull-9 {
1389
+ right: 75%;
1390
+ }
1391
+ .uikit-grid .col-md-pull-10 {
1392
+ right: 83.33333%;
1393
+ }
1394
+ .uikit-grid .col-md-pull-11 {
1395
+ right: 91.66667%;
1396
+ }
1397
+ .uikit-grid .col-md-pull-12 {
1398
+ right: 100%;
1399
+ }
1400
+ .uikit-grid .col-md-push-0 {
1401
+ left: auto;
1402
+ }
1403
+ .uikit-grid .col-md-push-1 {
1404
+ left: 8.33333%;
1405
+ }
1406
+ .uikit-grid .col-md-push-2 {
1407
+ left: 16.66667%;
1408
+ }
1409
+ .uikit-grid .col-md-push-3 {
1410
+ left: 25%;
1411
+ }
1412
+ .uikit-grid .col-md-push-4 {
1413
+ left: 33.33333%;
1414
+ }
1415
+ .uikit-grid .col-md-push-5 {
1416
+ left: 41.66667%;
1417
+ }
1418
+ .uikit-grid .col-md-push-6 {
1419
+ left: 50%;
1420
+ }
1421
+ .uikit-grid .col-md-push-7 {
1422
+ left: 58.33333%;
1423
+ }
1424
+ .uikit-grid .col-md-push-8 {
1425
+ left: 66.66667%;
1426
+ }
1427
+ .uikit-grid .col-md-push-9 {
1428
+ left: 75%;
1429
+ }
1430
+ .uikit-grid .col-md-push-10 {
1431
+ left: 83.33333%;
1432
+ }
1433
+ .uikit-grid .col-md-push-11 {
1434
+ left: 91.66667%;
1435
+ }
1436
+ .uikit-grid .col-md-push-12 {
1437
+ left: 100%;
1438
+ }
1439
+ .uikit-grid .col-md-offset-0 {
1440
+ margin-left: 0%;
1441
+ }
1442
+ .uikit-grid .col-md-offset-1 {
1443
+ margin-left: 8.33333%;
1444
+ }
1445
+ .uikit-grid .col-md-offset-2 {
1446
+ margin-left: 16.66667%;
1447
+ }
1448
+ .uikit-grid .col-md-offset-3 {
1449
+ margin-left: 25%;
1450
+ }
1451
+ .uikit-grid .col-md-offset-4 {
1452
+ margin-left: 33.33333%;
1453
+ }
1454
+ .uikit-grid .col-md-offset-5 {
1455
+ margin-left: 41.66667%;
1456
+ }
1457
+ .uikit-grid .col-md-offset-6 {
1458
+ margin-left: 50%;
1459
+ }
1460
+ .uikit-grid .col-md-offset-7 {
1461
+ margin-left: 58.33333%;
1462
+ }
1463
+ .uikit-grid .col-md-offset-8 {
1464
+ margin-left: 66.66667%;
1465
+ }
1466
+ .uikit-grid .col-md-offset-9 {
1467
+ margin-left: 75%;
1468
+ }
1469
+ .uikit-grid .col-md-offset-10 {
1470
+ margin-left: 83.33333%;
1471
+ }
1472
+ .uikit-grid .col-md-offset-11 {
1473
+ margin-left: 91.66667%;
1474
+ }
1475
+ .uikit-grid .col-md-offset-12 {
1476
+ margin-left: 100%;
1477
+ }
1478
+ }
1479
+
1480
+ @media (min-width: 1200px) {
1481
+ .uikit-grid .col-lg-1, .uikit-grid .col-lg-2, .uikit-grid .col-lg-3, .uikit-grid .col-lg-4, .uikit-grid .col-lg-5, .uikit-grid .col-lg-6, .uikit-grid .col-lg-7, .uikit-grid .col-lg-8, .uikit-grid .col-lg-9, .uikit-grid .col-lg-10, .uikit-grid .col-lg-11, .uikit-grid .col-lg-12 {
1482
+ float: left;
1483
+ }
1484
+ .uikit-grid .col-lg-1 {
1485
+ width: 8.33333%;
1486
+ }
1487
+ .uikit-grid .col-lg-2 {
1488
+ width: 16.66667%;
1489
+ }
1490
+ .uikit-grid .col-lg-3 {
1491
+ width: 25%;
1492
+ }
1493
+ .uikit-grid .col-lg-4 {
1494
+ width: 33.33333%;
1495
+ }
1496
+ .uikit-grid .col-lg-5 {
1497
+ width: 41.66667%;
1498
+ }
1499
+ .uikit-grid .col-lg-6 {
1500
+ width: 50%;
1501
+ }
1502
+ .uikit-grid .col-lg-7 {
1503
+ width: 58.33333%;
1504
+ }
1505
+ .uikit-grid .col-lg-8 {
1506
+ width: 66.66667%;
1507
+ }
1508
+ .uikit-grid .col-lg-9 {
1509
+ width: 75%;
1510
+ }
1511
+ .uikit-grid .col-lg-10 {
1512
+ width: 83.33333%;
1513
+ }
1514
+ .uikit-grid .col-lg-11 {
1515
+ width: 91.66667%;
1516
+ }
1517
+ .uikit-grid .col-lg-12 {
1518
+ width: 100%;
1519
+ }
1520
+ .uikit-grid .col-lg-pull-0 {
1521
+ right: auto;
1522
+ }
1523
+ .uikit-grid .col-lg-pull-1 {
1524
+ right: 8.33333%;
1525
+ }
1526
+ .uikit-grid .col-lg-pull-2 {
1527
+ right: 16.66667%;
1528
+ }
1529
+ .uikit-grid .col-lg-pull-3 {
1530
+ right: 25%;
1531
+ }
1532
+ .uikit-grid .col-lg-pull-4 {
1533
+ right: 33.33333%;
1534
+ }
1535
+ .uikit-grid .col-lg-pull-5 {
1536
+ right: 41.66667%;
1537
+ }
1538
+ .uikit-grid .col-lg-pull-6 {
1539
+ right: 50%;
1540
+ }
1541
+ .uikit-grid .col-lg-pull-7 {
1542
+ right: 58.33333%;
1543
+ }
1544
+ .uikit-grid .col-lg-pull-8 {
1545
+ right: 66.66667%;
1546
+ }
1547
+ .uikit-grid .col-lg-pull-9 {
1548
+ right: 75%;
1549
+ }
1550
+ .uikit-grid .col-lg-pull-10 {
1551
+ right: 83.33333%;
1552
+ }
1553
+ .uikit-grid .col-lg-pull-11 {
1554
+ right: 91.66667%;
1555
+ }
1556
+ .uikit-grid .col-lg-pull-12 {
1557
+ right: 100%;
1558
+ }
1559
+ .uikit-grid .col-lg-push-0 {
1560
+ left: auto;
1561
+ }
1562
+ .uikit-grid .col-lg-push-1 {
1563
+ left: 8.33333%;
1564
+ }
1565
+ .uikit-grid .col-lg-push-2 {
1566
+ left: 16.66667%;
1567
+ }
1568
+ .uikit-grid .col-lg-push-3 {
1569
+ left: 25%;
1570
+ }
1571
+ .uikit-grid .col-lg-push-4 {
1572
+ left: 33.33333%;
1573
+ }
1574
+ .uikit-grid .col-lg-push-5 {
1575
+ left: 41.66667%;
1576
+ }
1577
+ .uikit-grid .col-lg-push-6 {
1578
+ left: 50%;
1579
+ }
1580
+ .uikit-grid .col-lg-push-7 {
1581
+ left: 58.33333%;
1582
+ }
1583
+ .uikit-grid .col-lg-push-8 {
1584
+ left: 66.66667%;
1585
+ }
1586
+ .uikit-grid .col-lg-push-9 {
1587
+ left: 75%;
1588
+ }
1589
+ .uikit-grid .col-lg-push-10 {
1590
+ left: 83.33333%;
1591
+ }
1592
+ .uikit-grid .col-lg-push-11 {
1593
+ left: 91.66667%;
1594
+ }
1595
+ .uikit-grid .col-lg-push-12 {
1596
+ left: 100%;
1597
+ }
1598
+ .uikit-grid .col-lg-offset-0 {
1599
+ margin-left: 0%;
1600
+ }
1601
+ .uikit-grid .col-lg-offset-1 {
1602
+ margin-left: 8.33333%;
1603
+ }
1604
+ .uikit-grid .col-lg-offset-2 {
1605
+ margin-left: 16.66667%;
1606
+ }
1607
+ .uikit-grid .col-lg-offset-3 {
1608
+ margin-left: 25%;
1609
+ }
1610
+ .uikit-grid .col-lg-offset-4 {
1611
+ margin-left: 33.33333%;
1612
+ }
1613
+ .uikit-grid .col-lg-offset-5 {
1614
+ margin-left: 41.66667%;
1615
+ }
1616
+ .uikit-grid .col-lg-offset-6 {
1617
+ margin-left: 50%;
1618
+ }
1619
+ .uikit-grid .col-lg-offset-7 {
1620
+ margin-left: 58.33333%;
1621
+ }
1622
+ .uikit-grid .col-lg-offset-8 {
1623
+ margin-left: 66.66667%;
1624
+ }
1625
+ .uikit-grid .col-lg-offset-9 {
1626
+ margin-left: 75%;
1627
+ }
1628
+ .uikit-grid .col-lg-offset-10 {
1629
+ margin-left: 83.33333%;
1630
+ }
1631
+ .uikit-grid .col-lg-offset-11 {
1632
+ margin-left: 91.66667%;
1633
+ }
1634
+ .uikit-grid .col-lg-offset-12 {
1635
+ margin-left: 100%;
1636
+ }
1637
+ }
1638
+
1639
+ /*! @gov.au/header v1.0.0 */
1640
+ /**
1641
+ * Basic header block styling.
1642
+ */
1643
+ .uikit-header {
1644
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
1645
+ color: #fff;
1646
+ background: #1B7991;
1647
+ padding: 1.6em 0 2em 0;
1648
+ margin-bottom: 1.6em;
1649
+ }
1650
+
1651
+ .uikit-header.uikit-header--hero {
1652
+ padding: 3.2em 0 4em 0;
1653
+ }
1654
+
1655
+ @media (min-width: 768px) {
1656
+ .uikit-header {
1657
+ padding: 3.2em 0 4.8em 0;
1658
+ }
1659
+ .uikit-header.uikit-header--hero {
1660
+ padding: 7.2em 0 13.6em 0;
1661
+ }
1662
+ }
1663
+
1664
+ .uikit-header.uikit-header--light {
1665
+ background-color: #f0f3f5;
1666
+ color: #313131;
1667
+ }
1668
+
1669
+ .uikit-header.uikit-header--dark {
1670
+ background-color: #313131;
1671
+ }
1672
+
1673
+ .uikit-header-heading {
1674
+ font-size: 20px;
1675
+ line-height: 1.6;
1676
+ font-weight: bold;
1677
+ margin: 0;
1678
+ padding: 0;
1679
+ }
1680
+
1681
+ @media (min-width: 768px) {
1682
+ .uikit-header-heading {
1683
+ font-size: 36px;
1684
+ }
1685
+ }
1686
+
1687
+ .uikit-header-subline {
1688
+ font-size: 18px;
1689
+ line-height: 1.6;
1690
+ max-width: 42em;
1691
+ }
1692
+
1693
+ @media (min-width: 768px) {
1694
+ .uikit-header-subline {
1695
+ font-size: 20px;
1696
+ }
1697
+ }
1698
+
1699
+ /*! @gov.au/page-alerts v0.1.1 */
1700
+ @media print {
1701
+ .uikit-page-alerts {
1702
+ border-color: #000 !important;
1703
+ background-color: #fff !important;
1704
+ border-left: 2px solid #000 !important;
1705
+ padding-top: 3em !important;
1706
+ }
1707
+ .uikit-page-alerts:after {
1708
+ background: none !important;
1709
+ content: 'info' !important;
1710
+ top: 1em !important;
1711
+ left: 0 !important;
1712
+ font-size: 12px !important;
1713
+ border-right: 1px solid #000 !important;
1714
+ border-bottom: 1px solid #000 !important;
1715
+ padding: 0.5em !important;
1716
+ width: auto !important;
1717
+ }
1718
+ .uikit-page-alerts--success:after {
1719
+ content: 'success' !important;
1720
+ }
1721
+ .uikit-page-alerts--warning:after {
1722
+ content: 'warning' !important;
1723
+ }
1724
+ .uikit-page-alerts--error:after {
1725
+ content: 'error' !important;
1726
+ }
1727
+ }
1728
+
1729
+ .uikit-page-alerts {
1730
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
1731
+ color: #313131;
1732
+ line-height: 1.6;
1733
+ position: relative;
1734
+ margin: 1.6em 0;
1735
+ padding: 1.2em 0.8em 1.2em 0.8em;
1736
+ border: solid 2px #00bfe9;
1737
+ border-left: 48px solid #00bfe9;
1738
+ border-radius: 3px;
1739
+ max-width: 42em;
1740
+ }
1741
+
1742
+ .uikit-page-alerts :first-child {
1743
+ margin-top: 0;
1744
+ }
1745
+
1746
+ .uikit-page-alerts :last-child {
1747
+ margin-bottom: 0;
1748
+ }
1749
+
1750
+ .uikit-page-alerts:after {
1751
+ content: ' ';
1752
+ position: absolute;
1753
+ display: block;
1754
+ left: -36px;
1755
+ top: 50%;
1756
+ margin-top: -12px;
1757
+ width: 24px;
1758
+ height: 24px;
1759
+ background-repeat: no-repeat;
1760
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E\a %3Ccircle fill='%23313131' cx='64' cy='64' r='64'/%3E\a %3Crect fill='%23fff' width='16' height='16' x='56' y='20' rx='2'/%3E\a %3Crect fill='%23fff' width='16' height='56' x='56' y='44' rx='2'/%3E\a %3Crect fill='%23fff' width='40' height='16' x='44' y='84' rx='2'/%3E\a %3Crect fill='%23fff' width='28' height='16' x='44' y='44' rx='2'/%3E\a %3C/svg%3E");
1761
+ }
1762
+
1763
+ .ie8 .uikit-page-alerts:after,
1764
+ .lt-ie8 .uikit-page-alerts:after {
1765
+ background: none;
1766
+ text-align: center;
1767
+ background-color: #313131;
1768
+ color: #fff;
1769
+ font-weight: bold;
1770
+ content: 'i';
1771
+ }
1772
+
1773
+ /**
1774
+ * Page alert success
1775
+ */
1776
+ .uikit-page-alerts--success {
1777
+ border-color: #3dbd93;
1778
+ }
1779
+
1780
+ .uikit-page-alerts--success:after {
1781
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E\a %3Ccircle fill='%23313131' cx='64' cy='64' r='64'/%3E\a %3Cpath fill='%23fff' d='M102.59 45.41c.778-.778.782-2.038-.002-2.822l-9.176-9.176c-.78-.78-2.052-.772-2.823 0L56 68\a 41.42 53.42c-.784-.784-2.048-.792-2.832-.008l-9.176 9.176c-.78.78-.775 2.05-.004 2.82l25.184 25.184c.778.778 2.04.775 2.82-.003l45.177-45.18z'/%3E\a %3C/svg%3E");
1782
+ }
1783
+
1784
+ .ie8 .uikit-page-alerts--success:after,
1785
+ .lt-ie8 .uikit-page-alerts--success:after {
1786
+ content: '✓';
1787
+ }
1788
+
1789
+ /**
1790
+ * Page alert warning.
1791
+ */
1792
+ .uikit-page-alerts--warning {
1793
+ border-color: #f69900;
1794
+ }
1795
+
1796
+ .uikit-page-alerts--warning:after {
1797
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E\a %3Cpath fill='%23313131' d='M71.99 12.78l54.796 99.458c1.665 2.997 1.617 7.993-.143 10.99-.808 1.38-1.914 2.473-3.317\a 3.282-1.403.808-2.914 1.213-4.53 1.213H9.206c-1.62 0-3.13-.405-4.533-1.213-1.403-.81-2.51-1.903-3.317-3.282-1.76-2.997-1.808-7.993-.143-10.99L56.01\a 12.78c.808-1.474 1.925-2.64 3.352-3.496C60.79 8.428 62.335 8 64 8s3.21.428 4.638 1.284c1.427.856 2.544 2.022 3.353 3.496z'/%3E\a %3Crect fill='%23fff' width='16' height='16' x='56' y='96' rx='2'/%3E\a %3Cpath fill='%23fff' d='M52.167 42c-.092-1.104.73-2 1.838-2h19.99c1.107 0 1.93.895 1.838 2l-3.666 44c-.092 1.104-1.062 2-2.16 2H57.993c-1.1\a 0-2.07-.895-2.16-2l-3.667-44z'/%3E\a %3C/svg%3E");
1798
+ }
1799
+
1800
+ .ie8 .uikit-page-alerts--warning:after,
1801
+ .lt-ie8 .uikit-page-alerts--warning:after {
1802
+ content: '!';
1803
+ }
1804
+
1805
+ /**
1806
+ * Page alert error.
1807
+ */
1808
+ .uikit-page-alerts--error {
1809
+ border-color: #ff635c;
1810
+ }
1811
+
1812
+ .uikit-page-alerts--error:after {
1813
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E\a %3Cpath fill='%23313131' d='M71.99 12.78l54.796 99.458c1.665 2.997 1.617 7.993-.143 10.99-.808 1.38-1.914 2.473-3.317\a 3.282-1.403.808-2.914 1.213-4.53 1.213H9.206c-1.62 0-3.13-.405-4.533-1.213-1.403-.81-2.51-1.903-3.317-3.282-1.76-2.997-1.808-7.993-.143-10.99L56.01\a 12.78c.808-1.474 1.925-2.64 3.352-3.496C60.79 8.428 62.335 8 64 8s3.21.428 4.638 1.284c1.427.856 2.544 2.022 3.353 3.496z'/%3E\a %3Crect fill='%23fff' width='16' height='16' x='56' y='96' rx='2'/%3E\a %3Cpath fill='%23fff' d='M52.167 42c-.092-1.104.73-2 1.838-2h19.99c1.107 0 1.93.895 1.838 2l-3.666 44c-.092 1.104-1.062 2-2.16 2H57.993c-1.1\a 0-2.07-.895-2.16-2l-3.667-44z'/%3E\a %3C/svg%3E");
1814
+ }
1815
+
1816
+ .ie8 .uikit-page-alerts--error:after,
1817
+ .lt-ie8 .uikit-page-alerts--error:after {
1818
+ content: '!';
1819
+ }
1820
+
1821
+ /**
1822
+ * Screen-reader only class for interlinking error messages and corresponding form elements.
1823
+ */
1824
+ .uikit-page-alerts__sronly {
1825
+ position: absolute;
1826
+ width: 1px;
1827
+ height: 1px;
1828
+ padding: 0;
1829
+ margin: -1px;
1830
+ overflow: hidden;
1831
+ clip: rect(0, 0, 0, 0);
1832
+ border: 0;
1833
+ }
1834
+
1835
+ /*! @gov.au/text-inputs v0.1.1 */
1836
+ @media print {
1837
+ .uikit-text-input {
1838
+ border-color: #000 !important;
1839
+ }
1840
+ :disabled {
1841
+ background-color: #f0f3f5 !important;
1842
+ border-color: transparent;
1843
+ }
1844
+ [disabled] {
1845
+ background-color: #f0f3f5 !important;
1846
+ }
1847
+ }
1848
+
1849
+ /**
1850
+ * Text input labels.
1851
+ */
1852
+ .uikit-text-input__label {
1853
+ display: block;
1854
+ margin-bottom: 0.8em;
1855
+ }
1856
+
1857
+ .uikit-text-input__label > .uikit-text-input {
1858
+ margin-top: 0.8em;
1859
+ }
1860
+
1861
+ /**
1862
+ * Generic text input styling.
1863
+ *
1864
+ * Also includes variants:
1865
+ * - invalid
1866
+ * - valid
1867
+ * - :focus
1868
+ * - :disabled/[disabled]
1869
+ */
1870
+ .uikit-text-input {
1871
+ border: 2px solid #777777;
1872
+ padding: 0.4em;
1873
+ font-size: 16px;
1874
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
1875
+ color: #313131;
1876
+ }
1877
+
1878
+ .uikit-text-input:focus {
1879
+ outline: 1px solid #313131;
1880
+ outline-offset: 1px;
1881
+ }
1882
+
1883
+ .uikit-text-input:focus {
1884
+ background-color: #effafc;
1885
+ }
1886
+
1887
+ .uikit-text-input::-moz-selection {
1888
+ background-color: rgba(250, 194, 102, 0.5);
1889
+ }
1890
+
1891
+ .uikit-text-input::selection {
1892
+ background-color: rgba(250, 194, 102, 0.5);
1893
+ }
1894
+
1895
+ .uikit-text-input:invalid {
1896
+ border: 2px solid #ff635c;
1897
+ }
1898
+
1899
+ .uikit-text-input:invalid:focus {
1900
+ background-color: #ffefef;
1901
+ }
1902
+
1903
+ .uikit-text-input.uikit-text-input--invalid {
1904
+ border: 2px solid #ff635c;
1905
+ }
1906
+
1907
+ .uikit-text-input.uikit-text-input--invalid:focus {
1908
+ background-color: #ffefef;
1909
+ }
1910
+
1911
+ .uikit-text-input.uikit-text-input--valid {
1912
+ border: 2px solid #0cac78;
1913
+ }
1914
+
1915
+ .uikit-text-input.uikit-text-input--valid:focus {
1916
+ background-color: #e7f7f2;
1917
+ }
1918
+
1919
+ .uikit-text-input:disabled {
1920
+ cursor: not-allowed;
1921
+ background: #f0f3f5;
1922
+ color: #5a5a5a;
1923
+ }
1924
+
1925
+ .uikit-text-input[disabled] {
1926
+ cursor: not-allowed;
1927
+ background: #f0f3f5;
1928
+ color: #5a5a5a;
1929
+ }
1930
+
1931
+ /**
1932
+ * Block modifier
1933
+ */
1934
+ .uikit-text-input--block {
1935
+ display: block;
1936
+ width: 100%;
1937
+ box-sizing: border-box;
1938
+ }
1939
+
1940
+ /**
1941
+ * Textarea styling.
1942
+ */
1943
+ .uikit-text-input--textarea {
1944
+ line-height: 1.6;
1945
+ }
1946
+
1947
+ /**
1948
+ * Number input styling.
1949
+ *
1950
+ * Numbers are easier to disambiguate from each other (and letters) when set in
1951
+ * monospace.
1952
+ */
1953
+ .uikit-text-input--number {
1954
+ font-family: "Lucida Sans Typewriter", "Lucida Console", Monaco, "Bitstream Vera Sans Mono", monospace;
1955
+ letter-spacing: 2px;
1956
+ }
1957
+
1958
+ /**
1959
+ * Hint text.
1960
+ *
1961
+ * Built so it can sit both in- and outside the `label`.
1962
+ */
1963
+ .uikit-text-input__hint {
1964
+ display: block;
1965
+ margin-bottom: 0.4em;
1966
+ font-size: 87.5%;
1967
+ }
1968
+
1969
+ .uikit-text-input__label > .uikit-text-input__hint,
1970
+ .uikit-text-input + .uikit-text-input__hint {
1971
+ margin-top: 0.4em;
1972
+ }