@qhealth-design-system/core 1.2.2 → 1.3.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.
- package/CHANGELOG.md +4 -0
- package/README.md +1 -1
- package/package.json +2 -2
- package/src/components/_global/css/banner_contained/component.scss +180 -0
- package/src/components/_global/css/body/component.scss +78 -17
- package/src/components/_global/css/btn/component.scss +2 -2
- package/src/components/_global/css/forms/general/component.scss +3 -13
- package/src/components/_global/css/global.scss +0 -234
- package/src/components/_global/css/headings/component.scss +36 -27
- package/src/components/_global/css/icons/component.scss +82 -11
- package/src/components/_global/css/links/components.scss +76 -0
- package/src/components/_global/html/scripts.html +1 -1
- package/src/components/banner/css/component.scss +29 -97
- package/src/components/banner_advanced/html/component.hbs +3 -2
- package/src/components/banner_basic/html/component.hbs +16 -14
- package/src/components/banner_basic/js/manifest.json +16 -0
- package/src/components/basic_search/css/component.scss +18 -55
- package/src/components/basic_search/html/component.hbs +75 -88
- package/src/components/basic_search/js/global.js +3 -4
- package/src/components/basic_search/js/manifest.json +39 -38
- package/src/components/card_feature/html/component.hbs +3 -1
- package/src/components/card_feature/js/manifest.json +3 -0
- package/src/components/card_multi_action/html/component.hbs +5 -4
- package/src/components/card_no_action/html/component.hbs +4 -3
- package/src/components/card_no_action/js/manifest.json +11 -1
- package/src/components/card_single_action/html/component.hbs +1 -2
- package/src/components/card_single_action/js/manifest.json +9 -1
- package/src/components/footer/html/component.hbs +3 -2
- package/src/components/global_alert/css/component.scss +13 -11
- package/src/components/header/css/component.scss +38 -93
- package/src/components/header/html/component.hbs +15 -16
- package/src/components/main_navigation/css/component.scss +33 -28
- package/src/components/main_navigation/html/component.hbs +4 -10
- package/src/components/mega_main_navigation/css/component.scss +5 -7
- package/src/components/mega_main_navigation/html/component.hbs +7 -19
- package/src/components/pagination/css/component.scss +1 -12
- package/src/components/pagination/html/component.hbs +2 -2
- package/src/components/search_box/css/component.scss +45 -43
- package/src/components/search_box/html/component.html +11 -8
- package/src/components/widgets/css/component.scss +0 -19
- package/src/components/widgets/html/component.hbs +2 -13
- package/src/components/widgets/html/default.html +0 -1
- package/src/components/widgets/js/current.json +0 -12
- package/src/components/widgets/js/site.json +0 -16
- package/src/data/site.json +26 -1
- package/src/externals/handlebars.min-v4.7.8.js +29 -0
- package/src/helpers/Handlebars/getThumbnailAlt.js +12 -0
- package/src/html/component-banner_basic.html +4 -85
- package/src/html/component-basic_search.html +0 -1
- package/src/html/component-global-elements.html +44 -0
- package/src/index.js +6 -1
- package/src/styles/imports/variables.scss +22 -181
- package/src/externals/handlebars.min-v4.7.6.js +0 -29
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qhealth-design-system/core",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"licence": "MIT",
|
|
6
6
|
"main": "index.js",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"eslint": "^8.43.0",
|
|
31
31
|
"eslint-webpack-plugin": "^4.0.1",
|
|
32
32
|
"glob": "^7.2.0",
|
|
33
|
-
"handlebars": "^4.7.
|
|
33
|
+
"handlebars": "^4.7.8",
|
|
34
34
|
"html-loader": "^0.5.5",
|
|
35
35
|
"html-webpack-plugin": "^5.5.3",
|
|
36
36
|
"import-glob-loader": "^1.1.0",
|
|
@@ -0,0 +1,180 @@
|
|
|
1
|
+
.qld__banner_contained {
|
|
2
|
+
|
|
3
|
+
/* Some elements need to be set to position relative so that that components and backgrounds sit on the stack in the correct order */
|
|
4
|
+
|
|
5
|
+
.content {
|
|
6
|
+
position: relative;
|
|
7
|
+
/*Needed so content sits properly on the stack*/
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
// #content {
|
|
11
|
+
// position: relative;
|
|
12
|
+
// /*Needed so content sits properly on the stack*/
|
|
13
|
+
// }
|
|
14
|
+
|
|
15
|
+
main {
|
|
16
|
+
position: relative;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.qld__footer {
|
|
20
|
+
position: relative;
|
|
21
|
+
/*Needed so content sits properly on the stack*/
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
/* --------------------------------------------------*/
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
/* This set the max with for the banner and primary nav */
|
|
28
|
+
|
|
29
|
+
.qld__main-nav {
|
|
30
|
+
|
|
31
|
+
/*max size for the navigation component*/
|
|
32
|
+
max-width: 100rem; /* 1600px */
|
|
33
|
+
/*keeps nav in center */
|
|
34
|
+
margin: auto;
|
|
35
|
+
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.qld__banner {
|
|
39
|
+
|
|
40
|
+
/*max size for the banner component*/
|
|
41
|
+
max-width: 100rem; /* 1600px */
|
|
42
|
+
|
|
43
|
+
/*keeps banner in center */
|
|
44
|
+
margin: auto;
|
|
45
|
+
|
|
46
|
+
/* Adds shadow to banner */
|
|
47
|
+
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
|
|
48
|
+
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/* --------------------------------------------------*/
|
|
52
|
+
|
|
53
|
+
/* Z indext helps ensure the mega menu and the back to top button sit above the banner */
|
|
54
|
+
|
|
55
|
+
/*Needed so megamenu sits abvoe banner */
|
|
56
|
+
.qld__main-nav.qld__main-nav--mega .qld__main-nav__menu-sub {
|
|
57
|
+
z-index: 500; /*These should be variables */
|
|
58
|
+
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
/* ensures back-to top button stays above content */
|
|
62
|
+
body a.qld__btn.qld__btn--floating.qld__btn--back-to-top {
|
|
63
|
+
z-index: 1000; /*These should be variables */
|
|
64
|
+
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
/* --------------------------------------------------*/
|
|
68
|
+
|
|
69
|
+
/* Better alignment for hero image in contained style */
|
|
70
|
+
|
|
71
|
+
@media (min-width: 1312px) {
|
|
72
|
+
|
|
73
|
+
.qld__promo-panel.qld__body--full-image.qld__promo-panel--image-right
|
|
74
|
+
.qld__promo-panel__container {
|
|
75
|
+
padding-left: 0px;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.qld__banner.qld__banner--hero-right .qld__banner__image {
|
|
79
|
+
max-width: 45vw;
|
|
80
|
+
width: 45vw;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
/* --------------------------------------------------*/
|
|
85
|
+
|
|
86
|
+
/* The curved banner only gets applied at 1600px */
|
|
87
|
+
|
|
88
|
+
@media (min-width: 1600px) {
|
|
89
|
+
|
|
90
|
+
/* This applies a background to the whole top of the header */
|
|
91
|
+
|
|
92
|
+
.qld__header::before {
|
|
93
|
+
width: 100%;
|
|
94
|
+
content: " ";
|
|
95
|
+
position: absolute;
|
|
96
|
+
height: 100%;
|
|
97
|
+
|
|
98
|
+
/* img or colour set by user */
|
|
99
|
+
background-color: #D7ECF2;
|
|
100
|
+
// background-image: url('/?a=190085');
|
|
101
|
+
|
|
102
|
+
/* These settings should be able to be changed by user */
|
|
103
|
+
background-size: contain;
|
|
104
|
+
background-position: top left;
|
|
105
|
+
background-repeat: no-repeat;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.qld__header__main {
|
|
109
|
+
background: transparent;
|
|
110
|
+
/* removes current header background */
|
|
111
|
+
position: relative;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
/* Better alignment for hero image in contained style (this may requite some more experimentation to achieve best result */
|
|
115
|
+
.qld__banner.qld__banner--hero-right .qld__banner__image {
|
|
116
|
+
max-width: 620px;
|
|
117
|
+
width: 45vw;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.qld__main-nav {
|
|
121
|
+
/* Curved edges for nav*/
|
|
122
|
+
border-radius: 48px 48px 0px 0px; /* Should be variable */
|
|
123
|
+
/* Shadow for nav*/
|
|
124
|
+
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.qld__banner {
|
|
128
|
+
/* Curved edges for banner*/
|
|
129
|
+
border-radius: 0px 0px 48px 48px; /* Should be variable */
|
|
130
|
+
/* Makes sure banner sits in the correct stack position */
|
|
131
|
+
z-index: 200;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
/* The following code adds more padding to the succeeding section and pulls the div below the banner to sit under it slightly creating the overlap */
|
|
135
|
+
/* The overlap is the trickiest part and needs to be checked on all page types and background colours this code is just set to work for standard white background */
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
/* Next div */
|
|
139
|
+
.qld__banner + div.qld__body {
|
|
140
|
+
margin-top: -64px;
|
|
141
|
+
padding-top: 128px;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
/* Content pages (this needs to be updated tp work for all coloured backgrounds) */
|
|
145
|
+
.qld__banner + #content {
|
|
146
|
+
background-color: var(--QLD-color-light-background);
|
|
147
|
+
padding-top: 64px;
|
|
148
|
+
margin-top: -64px;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
/* Search pages */
|
|
152
|
+
.qld__banner + .qld__body.qld__search {
|
|
153
|
+
position: relative;
|
|
154
|
+
margin-top: -64px;
|
|
155
|
+
padding-top: 124px;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
// Body breadcrumbs
|
|
159
|
+
// Body breadcrumbs
|
|
160
|
+
.qld__body--breadcrumb{
|
|
161
|
+
padding-bottom: 32px;
|
|
162
|
+
padding-top: 32px;
|
|
163
|
+
max-width: 100rem;
|
|
164
|
+
margin: 0 auto -64px;
|
|
165
|
+
border-radius: 0 0 48px 48px;
|
|
166
|
+
box-shadow: 0px 1px 2px rgba(0,0,0,.3), 0px 2px 6px 2px rgba(0,0,0,.15);
|
|
167
|
+
position: relative;
|
|
168
|
+
z-index: 200;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
div.qld__body {
|
|
172
|
+
padding-top: 128px !important;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.qld__tab-section{
|
|
176
|
+
margin-top: 100px;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
}
|
|
180
|
+
}
|
|
@@ -334,8 +334,7 @@ form {
|
|
|
334
334
|
|
|
335
335
|
p {
|
|
336
336
|
margin: 0;
|
|
337
|
-
|
|
338
|
-
max-width: 80ch;
|
|
337
|
+
max-width: $QLD-font-maxwidth;
|
|
339
338
|
line-height: 1.75;
|
|
340
339
|
}
|
|
341
340
|
|
|
@@ -420,17 +419,39 @@ form {
|
|
|
420
419
|
@include QLD-space(margin-top, 1unit);
|
|
421
420
|
}
|
|
422
421
|
|
|
423
|
-
ul:not([class])
|
|
424
|
-
|
|
422
|
+
ul:not([class]) {
|
|
423
|
+
@include QLD-space(padding-inline-start, 2unit);
|
|
425
424
|
> li {
|
|
426
|
-
@include QLD-space(margin-top, .5unit);
|
|
425
|
+
@include QLD-space(margin-top, 0.5unit);
|
|
427
426
|
|
|
428
|
-
> ul:not([class])
|
|
429
|
-
|
|
430
|
-
@include QLD-space(
|
|
431
|
-
|
|
427
|
+
> ul:not([class]) {
|
|
428
|
+
list-style-type: none;
|
|
429
|
+
@include QLD-space(padding-inline-start, 1unit);
|
|
432
430
|
> li {
|
|
433
|
-
|
|
431
|
+
@include QLD-space(padding-left, 1unit);
|
|
432
|
+
@include QLD-space(margin-top, 0.5unit);
|
|
433
|
+
position: relative;
|
|
434
|
+
|
|
435
|
+
> ul:not([class]) {
|
|
436
|
+
@include QLD-space(padding-inline-start, 1unit);
|
|
437
|
+
> li {
|
|
438
|
+
@include QLD-space(margin-top, 0.5unit);
|
|
439
|
+
list-style-type: none;
|
|
440
|
+
&::before {
|
|
441
|
+
position: absolute;
|
|
442
|
+
content: "–";
|
|
443
|
+
left: 0px;
|
|
444
|
+
top: 0px;
|
|
445
|
+
}
|
|
446
|
+
}
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
&::before {
|
|
450
|
+
position: absolute;
|
|
451
|
+
content: "–";
|
|
452
|
+
left: 0px;
|
|
453
|
+
top: 0px;
|
|
454
|
+
}
|
|
434
455
|
}
|
|
435
456
|
}
|
|
436
457
|
|
|
@@ -438,9 +459,40 @@ form {
|
|
|
438
459
|
@include QLD-space(margin-top, 0unit);
|
|
439
460
|
}
|
|
440
461
|
}
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
ol:not([class]) {
|
|
465
|
+
@include QLD-space(padding-inline-start, 2unit);
|
|
466
|
+
> li {
|
|
467
|
+
@include QLD-space(margin-top, 0.5unit);
|
|
468
|
+
|
|
469
|
+
> ol:not([class]) {
|
|
470
|
+
// @include QLD-space(margin-top, 1unit);
|
|
471
|
+
> li {
|
|
472
|
+
list-style-type: lower-alpha;
|
|
473
|
+
@include QLD-space(margin-top, 0.5unit);
|
|
474
|
+
|
|
475
|
+
> ol:not([class]) {
|
|
476
|
+
// @include QLD-space(margin-top, 1unit);
|
|
477
|
+
|
|
478
|
+
> li {
|
|
479
|
+
@include QLD-space(margin-top, 0.5unit);
|
|
480
|
+
list-style-type: lower-roman;
|
|
481
|
+
}
|
|
482
|
+
}
|
|
483
|
+
}
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
&:first-child {
|
|
487
|
+
@include QLD-space(margin-top, 0unit);
|
|
488
|
+
}
|
|
489
|
+
}
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
ol:not([class]),
|
|
493
|
+
ul:not([class]) {
|
|
494
|
+
li {
|
|
495
|
+
@include QLD-space(line-height, 1.75unit);
|
|
444
496
|
}
|
|
445
497
|
}
|
|
446
498
|
|
|
@@ -625,14 +677,24 @@ form {
|
|
|
625
677
|
margin-right: 0;
|
|
626
678
|
}
|
|
627
679
|
|
|
680
|
+
blockquote {
|
|
681
|
+
padding-left: 0px;
|
|
682
|
+
border-left: none;
|
|
683
|
+
margin: 0;
|
|
684
|
+
}
|
|
685
|
+
|
|
686
|
+
.qld__block-quote{
|
|
687
|
+
padding-left: 1.375rem;
|
|
688
|
+
border-left: $QLD-border-width-thick solid var(--QLD-color-light-designAccent);
|
|
689
|
+
margin: 0;
|
|
690
|
+
}
|
|
691
|
+
|
|
628
692
|
blockquote,
|
|
629
693
|
.qld__block-quote {
|
|
630
694
|
@include QLD-fontgrid(md, small);
|
|
631
695
|
color: var(--QLD-color-light-heading);
|
|
632
696
|
font-weight: 600;
|
|
633
|
-
|
|
634
|
-
border-left: $QLD-border-width-thick solid var(--QLD-color-light-designAccent);
|
|
635
|
-
margin: 0;
|
|
697
|
+
|
|
636
698
|
|
|
637
699
|
.qld__quote-source {
|
|
638
700
|
@include QLD-fontgrid(xs, small);
|
|
@@ -676,7 +738,6 @@ form {
|
|
|
676
738
|
&.qld__body--alt {
|
|
677
739
|
background: var(--QLD-color-light-alt-background);
|
|
678
740
|
|
|
679
|
-
|
|
680
741
|
hr {
|
|
681
742
|
background-color: var(--QLD-color-light-alt-border);
|
|
682
743
|
}
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
&:active {
|
|
42
42
|
background-color: var(--QLD-color-light-background__shade);
|
|
43
43
|
border-color: var(--QLD-color-light-background__shade);
|
|
44
|
-
color: var(
|
|
44
|
+
color: var(--QLD-color-light-heading);
|
|
45
45
|
@include QLD-box-shadow(1);
|
|
46
46
|
text-decoration: none;
|
|
47
47
|
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
&.qld__footer--dark-alt,
|
|
81
81
|
.qld__code-header,
|
|
82
82
|
.qld__code.singleline {
|
|
83
|
-
|
|
83
|
+
|
|
84
84
|
.qld__btn,
|
|
85
85
|
a.qld__btn,
|
|
86
86
|
.sq-form-submit {
|
|
@@ -176,14 +176,6 @@ label{
|
|
|
176
176
|
}
|
|
177
177
|
}
|
|
178
178
|
|
|
179
|
-
.qld__fieldset {
|
|
180
|
-
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
.qld__btn {
|
|
184
|
-
margin-top: 2rem;
|
|
185
|
-
}
|
|
186
|
-
|
|
187
179
|
//Forms spacing
|
|
188
180
|
* + form {
|
|
189
181
|
@include QLD-space(margin-top, 2unit);
|
|
@@ -195,11 +187,6 @@ label{
|
|
|
195
187
|
}
|
|
196
188
|
}
|
|
197
189
|
|
|
198
|
-
// .qld__fieldset__legend,
|
|
199
|
-
// legend {
|
|
200
|
-
// @include QLD-space(margin-bottom, 0.5unit);
|
|
201
|
-
// }
|
|
202
|
-
|
|
203
190
|
// Reset fieldset styling to avoid inconsistency across different browsers
|
|
204
191
|
.qld__fieldset,
|
|
205
192
|
fieldset {
|
|
@@ -222,6 +209,9 @@ form {
|
|
|
222
209
|
+textarea {
|
|
223
210
|
@include QLD-space(margin-top, 0.5unit);
|
|
224
211
|
}
|
|
212
|
+
.qld__btn {
|
|
213
|
+
margin-top: 2rem;
|
|
214
|
+
}
|
|
225
215
|
}
|
|
226
216
|
|
|
227
217
|
.qld__form-group {
|
|
@@ -121,240 +121,6 @@ select.qld__field-width--1-quarter {
|
|
|
121
121
|
}
|
|
122
122
|
}
|
|
123
123
|
|
|
124
|
-
|
|
125
|
-
/* Default text size overrides */
|
|
126
|
-
|
|
127
|
-
.qld__default--xs {
|
|
128
|
-
font-size: var(--QLD-default-mobile-xs) !important;
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
.qld__default--sm {
|
|
132
|
-
font-size: var(--QLD-default-mobile-sm) !important;
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
.qld__default--md {
|
|
136
|
-
font-size: var(--QLD-default-mobile-md) !important;
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
.qld__default--lg {
|
|
140
|
-
font-size: var(--QLD-default-mobile-lg) !important;
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
.qld__default--xl {
|
|
144
|
-
font-size: var(--QLD-default-mobile-xl) !important;
|
|
145
|
-
;
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
.qld__default--xxl {
|
|
149
|
-
font-size: var(--QLD-default-mobile-xx) !important;
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
.qld__default--xxxl {
|
|
153
|
-
font-size: var(--QLD-default-mobile-xxxl) !important;
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
/* Desktop sizes for default text style overrides */
|
|
158
|
-
|
|
159
|
-
@media (min-width: 992px) {
|
|
160
|
-
|
|
161
|
-
.qld__default--xs {
|
|
162
|
-
font-size: var(--QLD-default-desktop-xs) !important;
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
.qld__default--sm {
|
|
166
|
-
font-size: var(--QLD-default-desktop-sm) !important;
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
.qld__default--md {
|
|
170
|
-
font-size: var(--QLD-default-desktop-md) !important;
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
.qld__default--lg {
|
|
174
|
-
font-size: var(--QLD-default-desktop-lg) !important;
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
.qld__default--xl {
|
|
178
|
-
font-size: var(--QLD-default-desktop-xl) !important;
|
|
179
|
-
;
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
.qld__default--xxl {
|
|
183
|
-
font-size: var(--QLD-default-desktop-xxl) !important;
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
.qld__default--xxxl {
|
|
187
|
-
font-size: var(--QLD-default-desktop-xxxl) !important;
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
/* Default global captions' style */
|
|
193
|
-
|
|
194
|
-
.qld__caption {
|
|
195
|
-
font-style: normal;
|
|
196
|
-
color: var(--QLD-color-light-text__muted);
|
|
197
|
-
font-size: var(--QLD-default-desktop-xs) !important;
|
|
198
|
-
line-height: 1.4;
|
|
199
|
-
font-weight: 400;
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
.qld__body--dark, .qld__body--dark-alt {
|
|
203
|
-
.qld__caption {
|
|
204
|
-
color: var(--QLD-color-dark-text__muted);
|
|
205
|
-
}
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
/* Default text size overrides */
|
|
209
|
-
|
|
210
|
-
.qld__default--xs {
|
|
211
|
-
font-size: var(--QLD-font-size-mobile-xs) ;
|
|
212
|
-
}
|
|
213
|
-
|
|
214
|
-
.qld__default--sm {
|
|
215
|
-
font-size: var(--QLD-font-size-mobile-sm);
|
|
216
|
-
}
|
|
217
|
-
|
|
218
|
-
.qld__default--md {
|
|
219
|
-
font-size: var(--QLD-font-size-mobile-md);
|
|
220
|
-
}
|
|
221
|
-
|
|
222
|
-
.qld__default--lg {
|
|
223
|
-
font-size: var(--QLD-font-size-mobile-lg);
|
|
224
|
-
}
|
|
225
|
-
|
|
226
|
-
.qld__default--xl {
|
|
227
|
-
font-size: var(--QLD-font-size-mobile-xl);
|
|
228
|
-
;
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
.qld__default--xxl {
|
|
232
|
-
font-size: var(--QLD-font-size-mobile-xx);
|
|
233
|
-
}
|
|
234
|
-
|
|
235
|
-
.qld__default--xxxl {
|
|
236
|
-
font-size: var(--QLD-font-size-mobile-xxxl);
|
|
237
|
-
}
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
/* Desktop sizes for default text style overrides */
|
|
241
|
-
|
|
242
|
-
@media (min-width: 992px) {
|
|
243
|
-
|
|
244
|
-
.qld__default--xs {
|
|
245
|
-
font-size: var(--QLD-font-size-desktop-xs);
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
.qld__default--sm {
|
|
249
|
-
font-size: var(--QLD-font-size-desktop-sm);
|
|
250
|
-
}
|
|
251
|
-
|
|
252
|
-
.qld__default--md {
|
|
253
|
-
font-size: var(--QLD-font-size-desktop-md);
|
|
254
|
-
}
|
|
255
|
-
|
|
256
|
-
.qld__default--lg {
|
|
257
|
-
font-size: var(--QLD-font-size-desktop-lg);
|
|
258
|
-
}
|
|
259
|
-
|
|
260
|
-
.qld__default--xl {
|
|
261
|
-
font-size: var(--QLD-font-size-desktop-xl);
|
|
262
|
-
;
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
.qld__default--xxl {
|
|
266
|
-
font-size: var(--QLD-font-size-desktop-xxl);
|
|
267
|
-
}
|
|
268
|
-
|
|
269
|
-
.qld__default--xxxl {
|
|
270
|
-
font-size: var(--QLD-font-size-desktop-xxxl);
|
|
271
|
-
}
|
|
272
|
-
}
|
|
273
|
-
|
|
274
|
-
/* Default global captions' style */
|
|
275
|
-
|
|
276
|
-
.qld__caption {
|
|
277
|
-
font-style: normal;
|
|
278
|
-
color: var(--QLD-color-light-text__muted);
|
|
279
|
-
line-height: 1.6;
|
|
280
|
-
font-weight: 400;
|
|
281
|
-
}
|
|
282
|
-
|
|
283
|
-
.qld__body--dark, .qld__body--dark-alt {
|
|
284
|
-
.qld__caption {
|
|
285
|
-
color: var(--QLD-color-dark-text__muted);
|
|
286
|
-
}
|
|
287
|
-
}
|
|
288
|
-
|
|
289
|
-
/* Default text size overrides */
|
|
290
|
-
|
|
291
|
-
.qld__default--xs {
|
|
292
|
-
font-size: var(--QLD-font-size-mobile-xs) ;
|
|
293
|
-
}
|
|
294
|
-
|
|
295
|
-
.qld__default--sm {
|
|
296
|
-
font-size: var(--QLD-font-size-mobile-sm);
|
|
297
|
-
}
|
|
298
|
-
|
|
299
|
-
.qld__default--md {
|
|
300
|
-
font-size: var(--QLD-font-size-mobile-md);
|
|
301
|
-
}
|
|
302
|
-
|
|
303
|
-
.qld__default--lg {
|
|
304
|
-
font-size: var(--QLD-font-size-mobile-lg);
|
|
305
|
-
}
|
|
306
|
-
|
|
307
|
-
.qld__default--xl {
|
|
308
|
-
font-size: var(--QLD-font-size-mobile-xl);
|
|
309
|
-
;
|
|
310
|
-
}
|
|
311
|
-
|
|
312
|
-
.qld__default--xxl {
|
|
313
|
-
font-size: var(--QLD-font-size-mobile-xx);
|
|
314
|
-
}
|
|
315
|
-
|
|
316
|
-
.qld__default--xxxl {
|
|
317
|
-
font-size: var(--QLD-font-size-mobile-xxxl);
|
|
318
|
-
}
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
/* Desktop sizes for default text style overrides */
|
|
322
|
-
|
|
323
|
-
@media (min-width: 992px) {
|
|
324
|
-
|
|
325
|
-
.qld__default--xs {
|
|
326
|
-
font-size: var(--QLD-font-size-desktop-xs);
|
|
327
|
-
}
|
|
328
|
-
|
|
329
|
-
.qld__default--sm {
|
|
330
|
-
font-size: var(--QLD-font-size-desktop-sm);
|
|
331
|
-
}
|
|
332
|
-
|
|
333
|
-
.qld__default--md {
|
|
334
|
-
font-size: var(--QLD-font-size-desktop-md);
|
|
335
|
-
}
|
|
336
|
-
|
|
337
|
-
.qld__default--lg {
|
|
338
|
-
font-size: var(--QLD-font-size-desktop-lg);
|
|
339
|
-
}
|
|
340
|
-
|
|
341
|
-
.qld__default--xl {
|
|
342
|
-
font-size: var(--QLD-font-size-desktop-xl);
|
|
343
|
-
;
|
|
344
|
-
}
|
|
345
|
-
|
|
346
|
-
.qld__default--xxl {
|
|
347
|
-
font-size: var(--QLD-font-size-desktop-xxl);
|
|
348
|
-
}
|
|
349
|
-
|
|
350
|
-
.qld__default--xxxl {
|
|
351
|
-
font-size: var(--QLD-font-size-desktop-xxxl);
|
|
352
|
-
}
|
|
353
|
-
}
|
|
354
|
-
|
|
355
|
-
/* Default text size overrides */
|
|
356
|
-
|
|
357
|
-
|
|
358
124
|
/*
|
|
359
125
|
* Tablet layout
|
|
360
126
|
*/
|