@iamproperty/components 3.4.4 → 3.4.6
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/README.md +30 -66
- package/assets/css/components/accordion.css +1 -0
- package/assets/css/components/accordion.css.map +1 -0
- package/assets/css/components/alert.css +1 -0
- package/assets/css/components/alert.css.map +1 -0
- package/assets/css/components/buttons.css +1 -0
- package/assets/css/components/buttons.css.map +1 -0
- package/assets/css/components/card.css +1 -0
- package/assets/css/components/card.css.map +1 -0
- package/assets/css/components/cardDeck.css +1 -0
- package/assets/css/components/cardDeck.css.map +1 -0
- package/assets/css/components/carousel.css +1 -0
- package/assets/css/components/carousel.css.map +1 -0
- package/assets/css/components/charts.css +1 -0
- package/assets/css/components/charts.css.map +1 -0
- package/assets/css/components/container.css +1 -0
- package/assets/css/components/container.css.map +1 -0
- package/assets/css/components/forms.css +1 -0
- package/assets/css/components/forms.css.map +1 -0
- package/assets/css/components/header.css +1 -0
- package/assets/css/components/header.css.map +1 -0
- package/assets/css/components/links.css +1 -0
- package/assets/css/components/links.css.map +1 -0
- package/assets/css/components/lists.css +1 -0
- package/assets/css/components/lists.css.map +1 -0
- package/assets/css/components/modal.css +1 -0
- package/assets/css/components/modal.css.map +1 -0
- package/assets/css/components/nav.css +1 -0
- package/assets/css/components/nav.css.map +1 -0
- package/assets/css/components/panel.css +1 -0
- package/assets/css/components/panel.css.map +1 -0
- package/assets/css/components/property-searchbar.css +1 -0
- package/assets/css/components/property-searchbar.css.map +1 -0
- package/assets/css/components/snapshot.css +1 -0
- package/assets/css/components/snapshot.css.map +1 -0
- package/assets/css/components/stepper.css +1 -0
- package/assets/css/components/stepper.css.map +1 -0
- package/assets/css/components/tables.css +1 -0
- package/assets/css/components/tables.css.map +1 -0
- package/assets/css/components/tabs.css +1 -0
- package/assets/css/components/tabs.css.map +1 -0
- package/assets/css/components/testimonial.css +1 -0
- package/assets/css/components/testimonial.css.map +1 -0
- package/assets/css/components/timeline.css +1 -0
- package/assets/css/components/timeline.css.map +1 -0
- package/assets/css/components/tooltips.css +1 -0
- package/assets/css/components/tooltips.css.map +1 -0
- package/assets/css/core.min.css +1 -1
- package/assets/css/core.min.css.map +1 -1
- package/assets/css/style.min.css +1 -1
- package/assets/css/style.min.css.map +1 -1
- package/assets/fonts/qanelas-bold-webfont.woff +0 -0
- package/assets/fonts/qanelas-bold-webfont.woff2 +0 -0
- package/assets/js/bundle.js +61 -0
- package/assets/js/components/accordion/accordion.component.js +27 -0
- package/assets/js/components/accordion/accordion.component.min.js +14 -0
- package/assets/js/components/accordion/accordion.component.min.js.map +1 -0
- package/assets/js/components/header/header.component.js +45 -0
- package/assets/js/components/header/header.component.min.js +30 -0
- package/assets/js/components/header/header.component.min.js.map +1 -0
- package/assets/js/components/tabs/tabs.component.js +28 -0
- package/assets/js/dynamic.js +85 -0
- package/assets/js/dynamic.min.js +56 -0
- package/assets/js/dynamic.min.js.map +1 -0
- package/assets/js/{main.js → flat-components.js} +15 -11
- package/assets/js/modules/accordion.js +11 -14
- package/assets/js/modules/helpers.js +9 -4
- package/assets/js/modules/tabs.js +91 -0
- package/assets/js/scripts.bundle.js +92 -980
- package/assets/js/scripts.bundle.js.map +1 -1
- package/assets/js/scripts.bundle.min.js +3 -4
- package/assets/js/scripts.bundle.min.js.map +1 -1
- package/assets/sass/_fonts.scss +4 -4
- package/assets/sass/_func.scss +1 -0
- package/assets/sass/_functions/functions.scss +6 -0
- package/assets/sass/_functions/mixins.scss +9 -9
- package/assets/sass/_functions/variables.scss +96 -68
- package/assets/sass/_tests/mixins.spec.scss +1 -1
- package/assets/sass/_tests/typography.spec.scss +2 -2
- package/assets/sass/components/accordion.scss +9 -6
- package/assets/sass/components/card.scss +7 -0
- package/assets/sass/components/container.scss +6 -6
- package/assets/sass/components/forms.scss +2 -0
- package/assets/sass/components/header.scss +34 -11
- package/assets/sass/components/links.scss +3 -2
- package/assets/sass/components/panel.scss +3 -4
- package/assets/sass/components/snapshot.scss +1 -1
- package/assets/sass/components/tabs.scss +52 -36
- package/assets/sass/components/timeline.scss +2 -2
- package/assets/sass/foundations/reboot.scss +2 -2
- package/assets/sass/foundations/root.scss +12 -5
- package/assets/sass/foundations/type.scss +90 -66
- package/assets/ts/README.md +12 -0
- package/assets/ts/bundle.ts +76 -0
- package/assets/ts/components/accordion/README.md +17 -0
- package/assets/ts/components/accordion/accordion.component.ts +36 -0
- package/assets/ts/components/header/README.md +26 -0
- package/assets/ts/components/header/header.component.ts +53 -0
- package/assets/ts/components/tabs/README.md +18 -0
- package/assets/ts/components/tabs/tabs.component.ts +34 -0
- package/assets/ts/dynamic.ts +105 -0
- package/assets/ts/{main.ts → flat-components.ts} +15 -11
- package/assets/ts/html.d.ts +4 -0
- package/assets/ts/modules/accordion.ts +15 -21
- package/assets/ts/modules/helpers.ts +12 -4
- package/assets/ts/modules/tabs.ts +129 -0
- package/dist/components.es.js +845 -873
- package/dist/components.umd.js +63 -19
- package/dist/style.css +1 -1
- package/package.json +19 -10
- package/src/components/Accordion/Accordion.spec.js +1 -1
- package/src/components/Accordion/Accordion.vue +7 -5
- package/src/components/Accordion/AccordionItem.vue +3 -6
- package/src/components/Accordion/README.md +0 -2
- package/src/components/Header/Header.spec.js +5 -4
- package/src/components/Header/Header.vue +14 -20
- package/src/components/Snapshot/Snapshot.vue +1 -1
- package/src/components/Tabs/README.md +0 -2
- package/src/components/Tabs/Tab.vue +3 -2
- package/src/components/Tabs/Tabs.vue +8 -64
- package/src/index.js +0 -1
- package/assets/fonts/qanelassoft-extrabold-webfont.woff +0 -0
- package/assets/fonts/qanelassoft-extrabold-webfont.woff2 +0 -0
- package/assets/sass/components/drawer.scss +0 -47
- package/src/components/Drawer/Drawer.vue +0 -53
- package/src/components/Drawer/README.md +0 -23
package/README.md
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
|
|
1
2
|
# Getting started
|
|
2
3
|
|
|
3
4
|
## Using the component library or assets
|
|
@@ -10,9 +11,7 @@ npm install @iamproperty/components --save
|
|
|
10
11
|
### Usage
|
|
11
12
|
|
|
12
13
|
#### Static assets
|
|
13
|
-
|
|
14
|
-
The assets folder can be used independently from the Vue components so that they can be used with other frameworks. With the compiled files available to use out of the box alongside the source files that can be configured.
|
|
15
|
-
|
|
14
|
+
The assets folder can be used independently from the Vue components so that they can be used with other frameworks. With the compiled files available to use out of the box alongside the source files that can be configured.
|
|
16
15
|
```
|
|
17
16
|
<link href="./node_modules/@iamproperty/components/assets/css/style.min.css" as="style" />
|
|
18
17
|
<script src="./node_modules/@iamproperty/components/assets/js/scripts.bundle.min.js"></script>
|
|
@@ -28,64 +27,31 @@ The assets folder can be used independently from the Vue components so that they
|
|
|
28
27
|
import navbar from @iamproperty/components/assets/js/modules/navbar.js
|
|
29
28
|
```
|
|
30
29
|
|
|
31
|
-
|
|
32
30
|
#### Vue application
|
|
33
|
-
|
|
34
31
|
```
|
|
35
32
|
import '@iamproperty/components/assets/css/core.min.css'
|
|
36
|
-
import '@iamproperty/components/dist/
|
|
33
|
+
import '@iamproperty/components/dist/style.css'
|
|
37
34
|
|
|
38
35
|
import * as iamkey from '@iamproperty/components'
|
|
39
36
|
for (const [key, value] of Object.entries(iamkey)) {
|
|
40
37
|
Vue.component(key, value)
|
|
41
38
|
}
|
|
42
39
|
```
|
|
43
|
-
|
|
44
40
|
Components then can be used as described in the design system documentation.
|
|
45
|
-
|
|
46
41
|
```
|
|
47
42
|
<Header title="Page title" image="../../assets/image.jpeg"><p>Page description</p></Header>
|
|
48
43
|
```
|
|
49
44
|
|
|
50
|
-
#### NUXT
|
|
51
|
-
|
|
52
|
-
To use the components in NUXT you firstly need to add create a plugin file called plugins/iamkey.js and add the below code.
|
|
53
|
-
|
|
54
|
-
```
|
|
55
|
-
import Vue from 'vue'
|
|
56
|
-
|
|
57
|
-
import '@iamproperty/components/assets/css/core.min.css'
|
|
58
|
-
import '@iamproperty/components/dist/components.css'
|
|
59
|
-
|
|
60
|
-
import * as iamkey from '@iamproperty/components'
|
|
61
|
-
for (const [key, value] of Object.entries(iamkey)) {
|
|
62
|
-
Vue.component(key, value)
|
|
63
|
-
}
|
|
64
|
-
```
|
|
65
|
-
|
|
66
|
-
Then add the plugin to the nuxt.config.js file.
|
|
67
|
-
|
|
68
|
-
```
|
|
69
|
-
export default {
|
|
70
|
-
plugins: [
|
|
71
|
-
'plugins/iamkey.js'
|
|
72
|
-
],
|
|
73
|
-
}
|
|
74
|
-
```
|
|
75
|
-
|
|
76
|
-
|
|
77
45
|
## Contributing to iam key
|
|
78
46
|
|
|
79
47
|
### Create code branch
|
|
80
|
-
|
|
81
|
-
Firstly the clone the [repo](https://github.com/iamproperty/iamproperty-vue-component-library) from GitHub and create a new branch using the agreed naming conventention.
|
|
48
|
+
Firstly the clone the [repo](https://github.com/iamproperty/iamproperty.github.io) from GitHub and create a new branch from the develop branch using the agreed naming convention (FEG-99/feature/task-title).
|
|
82
49
|
|
|
83
50
|
### Commands
|
|
84
51
|
|
|
85
52
|
#### Install node packages
|
|
86
|
-
|
|
87
53
|
```
|
|
88
|
-
npm install
|
|
54
|
+
npm install --force
|
|
89
55
|
```
|
|
90
56
|
|
|
91
57
|
#### Development local web server
|
|
@@ -93,24 +59,30 @@ npm install
|
|
|
93
59
|
Setup a local web server to run the documentation site this will allow you to modify the code and check it.
|
|
94
60
|
|
|
95
61
|
```
|
|
96
|
-
npm run
|
|
62
|
+
npm run dev
|
|
97
63
|
```
|
|
64
|
+
OR
|
|
65
|
+
```
|
|
66
|
+
npm run watch
|
|
67
|
+
```
|
|
68
|
+
The second command will run dev but will also watch for sass and typescript files being changed which would then update the CSS and JavaScript files.
|
|
98
69
|
|
|
99
|
-
#### Run
|
|
100
|
-
|
|
101
|
-
**This command should be ran while the local web server is still running.**
|
|
102
|
-
|
|
70
|
+
#### Run unit tests
|
|
103
71
|
Unit tests should be ran after changing any code to make sure it has no unwanted side effects.
|
|
104
|
-
|
|
105
|
-
The visual regression tests may differ greatly if the tests are running on a windows when the the snapshots where created on Mac.
|
|
106
|
-
|
|
107
72
|
```
|
|
108
73
|
npm run test
|
|
109
74
|
```
|
|
110
|
-
|
|
75
|
+
**This command is ran when a PR is created to give the reviewer confidence that their hasn't been any unforeseen side effects**
|
|
76
|
+
|
|
77
|
+
#### Run visual regression test
|
|
78
|
+
**This command should be ran while the local web server is still running. The localURL variable in package.json file needs to match the local web server.**
|
|
79
|
+
```
|
|
80
|
+
npm run visual
|
|
81
|
+
```
|
|
82
|
+
The visual regression tests may differ greatly if the tests are running on a windows when the the snapshots where created on Mac.
|
|
83
|
+
|
|
111
84
|
#### Prepare for pull request
|
|
112
|
-
|
|
113
|
-
**This command should be ran while the local web server is still running.**
|
|
85
|
+
**This command should be ran while the local web server is still running. The localURL variable in package.json file needs to match the local web server.**
|
|
114
86
|
|
|
115
87
|
Before creating a pull request we want to make sure assets get re-compiled and audited so that we can keep an eye on file sizes. We also want to recreate visual regression snapshots. This will create a number of files that will be added to the pull request to help the reviewers make judgement on the changes.
|
|
116
88
|
|
|
@@ -118,24 +90,16 @@ Before creating a pull request we want to make sure assets get re-compiled and a
|
|
|
118
90
|
npm run pull-request
|
|
119
91
|
```
|
|
120
92
|
|
|
121
|
-
### Pull request
|
|
93
|
+
### Create Pull request into develop
|
|
94
|
+
You will not have the ability to commit changes directly to the main or develop branches and a pull request will have to be created. This pull request should follow the format dictated in the .github/pull_request_template.md file. The pull reguest should always be into develop unless you are doing a hotfix in a release branch. At least one approver is needed but for more complex bits of work more can be added. The pull request will run the unit tests and create a test environment in netlify for the reviewer to help complete the review. Once the pull request is closed the netlify development environment will get updated.
|
|
122
95
|
|
|
123
|
-
|
|
96
|
+
https://iamproperty-dev.netlify.app/
|
|
124
97
|
|
|
125
98
|
## Create release
|
|
99
|
+
The creation of an npm package is done through GitHub actions when a GitHub release is created. Releases can be made from any branch but it should come from the master branch.
|
|
100
|
+
<a href="https://www.npmjs.com/package/@iamproperty/components" target="_blank">npm registry package</a>.
|
|
126
101
|
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
```
|
|
130
|
-
npm login
|
|
131
|
-
```
|
|
132
|
-
|
|
133
|
-
After you are logged in then can publish but remember to increase the package version if the package.json file.
|
|
134
|
-
|
|
135
|
-
```
|
|
136
|
-
npm publish
|
|
137
|
-
```
|
|
138
|
-
|
|
139
|
-
## Update https://iamproperty.github.io/
|
|
102
|
+
## Update the documentation site
|
|
103
|
+
To update the documentation site you need to create a pull request from develop or a release branch into master. Once the PR is approved an automatic build and deploy process using GitHub actions will be created.
|
|
140
104
|
|
|
141
|
-
|
|
105
|
+
https://iamproperty.github.io/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
:is(.accordion,iam-accordion){--accordion-indent: 0.75rem;--accordion-right-padding: 3rem;--accordion-y-padding: 1rem;--accordion-icon-size: 1.875rem;--accordion-icon-top: 0.75rem}@media screen and (min-width: 62em){:is(.accordion,iam-accordion){--accordion-right-padding: 6rem;--accordion-y-padding: 2rem;--accordion-icon-size: 3rem;--accordion-icon-top: 1.25rem}}.accordion-header{padding:var(--accordion-y-padding) var(--accordion-right-padding) var(--accordion-y-padding) var(--accordion-indent);color:var(--colour-heading);text-align:left;background-color:rgba(0,0,0,0);overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease;--marker-bg: var(--colour-secondary);cursor:pointer;position:relative;max-width:100%}@media(prefers-reduced-motion: reduce){.accordion-header{transition:none}}.accordion-header .badge{vertical-align:bottom;margin-left:.5em;margin-right:.5em;margin-bottom:.1em}.accordion-header:before,.accordion-header:after{content:"";position:absolute;right:var(--accordion-indent);top:var(--accordion-icon-top);margin-top:var(--accordion-icon-size-half);width:var(--accordion-icon-size);height:var(--accordion-icon-size)}.accordion-header:before{text-indent:100%;white-space:nowrap;overflow:hidden;background:var(--marker-bg);border-radius:100%}.accordion-header::after{background:currentColor;mask-image:var(--icon-arrow);mask-size:50%;mask-repeat:no-repeat;mask-position:50% 50%;-webkit-mask-image:var(--icon-arrow);-webkit-mask-size:50%;-webkit-mask-repeat:no-repeat;-webkit-mask-position:50% 50%;transition:transform .2s ease-in-out;transform:rotate(90deg)}@media(prefers-reduced-motion: reduce){.accordion-header::after{transition:none}}.accordion-header:hover,.accordion-header:focus{--marker-bg: var(--colour-warning);color:var(--colour-hover)}.accordion-header:hover{z-index:var(--index-focus)}.accordion-header:focus{z-index:var(--index-focus);border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}[open]>summary>.accordion-header{color:var(--colour-heading);background-color:rgba(0,0,0,0)}[open]>summary>.accordion-header::after{transform:rotate(-90deg)}.accordion-header[class*=bg-] .accordion-button{border-bottom:1px solid var(--colour-border);margin-bottom:-1px}.accordion-header[class*=bg-] .accordion-button:before{background:none !important}.accordion-header[class*=bg-]:hover .accordion-button{opacity:.8}.accordion-header[class*=bg-]+.accordion-body{padding-top:2rem}.accordion-header{margin-bottom:0}.accordion-item{background-color:rgba(0,0,0,0);border-bottom:1px solid var(--colour-border);margin-bottom:2rem}.accordion-item:first-of-type{border-top:1px solid var(--colour-border)}.accordion-item+.accordion-item{margin-top:-2rem}.accordion-item summary~*{text-align:left;padding:0 var(--accordion-indent)}.accordion--straight>details>summary:not([class*=bg-])>.accordion-button,.accordion--straight>details>.accordion-item summary~*{padding-left:0 !important}.accordion--straight .accordion-item summary~*{padding-right:0 !important}.accordion .accordion:first-child{padding-top:1rem}.accordion .accordion:last-child{padding-bottom:2rem}.accordion .accordion .accordion-button{padding:1rem 3rem 1rem var(--accordion-indent)}.accordion .accordion .accordion-button:before,.accordion .accordion .accordion-button:after{top:.75rem;height:2rem;width:2rem;right:.5rem}.accordion .accordion .accordion-button:before{background-color:var(--colour-light)}/*# sourceMappingURL=accordion.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../sass/components/accordion.scss","../../sass/_functions/mixins.scss","../../sass/_functions/variables.scss","../../../node_modules/bootstrap/scss/mixins/_transition.scss","../../../node_modules/bootstrap/scss/_variables.scss"],"names":[],"mappings":"AAGA,8BACE,4BACA,gCACA,4BACA,gCACA,8BCFE,oCDHJ,8BASI,gCACA,4BACA,4BACA,+BAIJ,kBAEE,qHACA,4BACA,gBACA,iBE6aoB,cF5apB,qBGTI,WHUJ,2IAEA,qCACA,eACA,kBACA,eGXI,uCHDN,kBGEQ,iBHYN,yBACE,sBACA,iBACA,kBACA,mBAIF,iDAGE,WACA,kBACA,8BACA,8BACA,2CACA,iCACA,kCAGF,yBACE,iBACA,mBACA,gBACA,4BACA,mBAIF,yBACE,wBACA,6BACA,cACA,sBACA,sBAEA,qCACA,sBACA,8BACA,8BGxDE,WH0DF,0BACA,wBGvDE,uCH0CJ,yBGzCM,iBHyDN,gDAGE,mCACA,0BAGF,wBACE,2BAGF,wBACE,2BACA,aI8uBoC,QJ7uBpC,UACA,WI0nB4B,kCJvnB9B,iCACE,4BACA,iBE2WyB,cFzWzB,wCAEE,yBAQJ,gDAEE,6CACA,mBAEA,uDACE,2BAIJ,sDACE,WAGF,8CAEE,iBAOJ,kBACE,gBAGF,gBACE,iBEuUa,cFtUb,6CACA,mBAEA,8BACE,0CAGF,gCACE,iBAIJ,0BACE,gBACA,kCAKA,gIAEE,0BAGF,+CACE,2BAQF,kCAEE,iBAGF,iCAEE,oBAGF,wCACE,+CAEA,6FAEE,WACA,YACA,WACA,YAEF,+CACE","file":"accordion.css"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.alert__inner{position:relative;padding:1.5rem;margin-bottom:2rem;border-radius:.375rem}.alert__inner:not(.bg-primary):not(.bg-dark):not(.bg-danger){--colour-body: black;color:#000}.alert__inner>*:last-child{margin-bottom:0}.alert__inner>*{max-width:100%}.alert--fixed{position:fixed;padding-top:2rem;z-index:var(--index-floating);left:50%;transform:translate(-50%, 0);bottom:0}.alert--dismissible .alert__inner{padding-right:4rem;overflow:hidden}.alert--dismissible .alert__inner .btn-close{position:absolute;top:1.5rem;right:1.5rem;height:1rem;width:1rem;padding:0;border:none;z-index:var(--index-focus);background:currentColor;mask-image:var(--icon-close);mask-size:100%;mask-repeat:no-repeat;mask-position:50% 50%}.alert__holder{position:fixed;z-index:var(--index-floating);bottom:0;left:0;width:100%;max-height:100vh;overflow:auto;background:linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4))}.alert__holder>*:first-child{margin-top:2rem}.alert__holder .alert--fixed{position:static;transform:none;padding-top:0}[data-timeout] .alert__inner:after{content:"";position:absolute;bottom:0;left:0;width:0%;height:.25rem;background:#000;animation:progress var(--animation-length) linear}@keyframes progress{0%{width:0%}100%{width:100%}}/*# sourceMappingURL=alert.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../sass/components/alert.scss","../../../node_modules/bootstrap/scss/mixins/_border-radius.scss"],"names":[],"mappings":"AAIE,cACE,kBACA,eACA,mBCYA,sBDRA,6DACE,qBACA,WAGF,2BACE,gBAGF,gBACE,eAIJ,cACE,eACA,iBACA,8BACA,SACA,6BACA,SAKJ,kCACE,mBACA,gBAGA,6CACE,kBACA,WACA,aACA,YACA,WACA,UACA,YACA,2BACA,wBACA,6BACA,eACA,sBACA,sBAIJ,eACE,eACA,8BACA,SACA,OACA,WACA,iBACA,cACA,iEAEA,6BACE,gBAGF,6BACE,gBACA,eACA,cAIJ,mCAEE,WACA,kBACA,SACA,OACA,SACA,cACA,gBACA,kDAGF,oBACE,GACE,SAEF,KACI","file":"alert.css"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.btn{display:inline-block;font-weight:600;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;user-select:none;background:var(--btn-bg);border:2px solid var(--btn-bg);color:var(--btn-text);font-family:var(--font-heading);font-size:1rem;line-height:1.25;padding:0.75em 1.75em;border-radius:1.25rem;margin-bottom:1.5rem;margin-right:1rem;transition:all .5s,color .5s;height:auto}a:hover .btn,a:focus .btn,.btn:hover,.btn:focus{outline:0;text-decoration:none;border-radius:1.25rem;background:rgba(0,0,0,0);border-color:var(--btn-bg) !important;color:var(--btn-hover-text)}a:active .btn,a.active .btn,.btn:active,.btn.active{border-radius:1.25rem;transition:0s;background:rgba(0,0,0,0);border-color:var(--btn-text);color:var(--btn-hover-text)}a:disabled .btn,.btn:disabled{pointer-events:none;opacity:.5}.btn.btn-secondary{--btn-bg: var(--colour-secondary)}.btn.btn-tertiary,.btn.btn-tag:not(.btn-primary):not(.btn-secondary){background:var(--btn-tertiary-bg);border-color:var(--btn-hover-text) !important;color:var(--btn-tertiary-hover-text)}.btn.btn-tertiary:not(:hover):not(:focus),.btn.btn-tag:not(.btn-primary):not(.btn-secondary):not(:hover):not(:focus){background:rgba(0,0,0,0);color:var(--colour-link);border-color:var(--btn-hover-text)}.btn.btn-tag.btn-primary{--btn-bg: var(--colour-warning)}.btn.btn-admin:not(:hover):not(:focus){background:var(--colour-admin);border-color:var(--colour-admin) !important}input:checked+.btn:not(:hover):not(:focus),details[open]>summary.btn:first-child{transition:0s;background:var(--btn-tertiary-bg);border-color:var(--btn-hover-text);color:var(--btn-tertiary-hover-text)}input:checked+.btn-tertiary:not(:hover):not(:focus):not(:active),input:checked+.btn-tag:not(.btn-primary):not(.btn-secondary):not(:hover):not(:focus):not(:active){background:var(--colour-selected);border-color:var(--colour-selected) !important;color:var(--colour-primary)}.btn-sm,.btn-group-sm>.btn{padding:0.375em 0.75em}.btn-tag{padding:0.375em 0.75em;margin-bottom:.5rem;margin-right:.5rem}.btn-next,.btn-prev{--marker-bg: var(--colour-secondary);text-indent:100%;white-space:nowrap;overflow:hidden;background:var(--marker-bg);border-radius:100%;width:2.25rem;height:2.25rem;text-indent:-300rem;overflow:hidden;border:none;position:relative;margin:0 0.5rem;padding:0}@media screen and (min-width: 62em){.btn-next,.btn-prev{width:3rem;height:3rem}}.btn-next:disabled,.btn-prev:disabled{opacity:.8;pointer-events:none}.btn-next:after,.btn-prev:after{content:"";position:absolute;right:0;top:0;height:100%;width:100%;background:currentColor;mask-image:var(--icon-arrow);mask-size:50%;mask-repeat:no-repeat;mask-position:50% 60%;-webkit-mask-image:var(--icon-arrow);-webkit-mask-size:50%;-webkit-mask-repeat:no-repeat;-webkit-mask-position:55% 50%;transform:rotate(0deg)}.btn-next:hover,.btn-next:focus,.btn-prev:hover,.btn-prev:focus{background:var(--colour-warning);color:var(--colour-hover);border-radius:100%}.btn-next:active,.btn-prev:active{border-radius:100%}.btn-prev:after{transform:rotate(180deg)}.btn-group{flex-wrap:wrap}.btn-group>.btn{margin-right:0;padding:.75rem}.btn-group>.btn:last-of-type{border-top-right-radius:1.25rem !important;border-bottom-right-radius:1.25rem !important}.btn-group>*:not(.btn){width:100%}.btn-group--admin{position:relative}.btn-group--admin:before{content:"";width:calc(100% - 2px);height:3rem;background-color:var(--colour-admin) !important;position:absolute;top:0;left:0;z-index:0;border-radius:.5rem !important}.btn-group--admin>.btn:not(:hover):not(:focus){border-radius:.5rem !important;background:var(--colour-admin);border-color:var(--colour-admin) !important}.btn-group--admin>.btn:is(:hover,:focus){border-radius:.5rem !important;background:var(--colour-selected);border-color:var(--colour-admin) !important;color:var(--colour-primary)}.btn-group--admin>input:checked+.btn-tertiary:not(:hover):not(:focus):not(:active){border-color:var(--colour-admin) !important}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;flex:1 1 auto}.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn:hover,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn.active{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group{border-radius:1rem}.btn-group>:not(.btn-check:first-child)+.btn,.btn-group>.btn-group:not(:first-child){margin-left:-1px}.btn-group>.btn:not(:last-child):not(.dropdown-toggle),.btn-group>.btn.dropdown-toggle-split:first-child,.btn-group>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn,.btn-group>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:1.125rem;padding-left:1.125rem}.dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-sm+.dropdown-toggle-split,.btn-group-sm>.btn+.dropdown-toggle-split{padding-right:1.125rem;padding-left:1.125rem}.btn-lg+.dropdown-toggle-split,.btn-group-lg>.btn+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),.btn-group-vertical>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn~.btn,.btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}/*# sourceMappingURL=buttons.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../sass/components/buttons.scss","../../sass/_functions/mixins.scss","../../../node_modules/bootstrap/scss/_button-group.scss","../../../node_modules/bootstrap/scss/mixins/_border-radius.scss"],"names":[],"mappings":"AAEA,KAEE,qBACA,gBACA,kBACA,qBACA,sBACA,eACA,iBACA,yBACA,+BACA,sBACA,gCACA,eACA,iBACA,sBACA,sBACA,qBACA,kBACA,6BACA,YAEA,gDAIE,UACA,qBACA,sBACA,yBACA,sCACA,4BAGF,oDAKE,sBACA,cACA,yBACA,6BACA,4BAOF,8BAEE,oBACA,WAGF,mBAEE,kCAGF,qEAGE,kCACA,8CACA,qCAEA,qHAEE,yBACA,yBACA,mCAIJ,yBACE,gCAGF,uCACE,+BACA,4CAIJ,iFAGE,cACA,kCACA,mCACA,qCAOF,mKAEE,kCACA,+CACA,4BAKF,2BAEE,uBAGF,SAEE,uBACA,oBACA,mBAKF,oBAEE,qCACA,iBACA,mBACA,gBACA,4BACA,mBACA,cACA,eAOA,oBACA,gBACA,YACA,kBACA,gBACA,UC3IE,oCDsHJ,oBAaI,WACA,aASF,sCACE,WACA,oBAGF,gCACE,WACA,kBACA,QACA,MACA,YACA,WACA,wBACA,6BACA,cACA,sBACA,sBACA,qCACA,sBACA,8BACA,8BACA,uBAGF,gEAGE,iCACA,0BACA,mBAGF,kCACE,mBAKF,gBAEE,yBAMJ,WAEE,eAEA,gBACE,eACA,eAGF,6BAEE,2CACA,8CAGF,uBACE,WAIJ,kBAEE,kBAEA,yBACE,WACA,uBACA,YACA,gDACA,kBACA,MACA,OACA,UACA,+BAGF,+CACE,+BACA,+BAEA,4CAGF,yCACE,+BACA,kCAEA,4CACA,4BAGF,mFACE,4CEpPJ,+BAEE,kBACA,oBACA,sBAEA,yCACE,kBACA,cAKF,kXAME,UAKJ,aACE,aACA,eACA,2BAEA,0BACE,WAIJ,WChBI,mBDoBF,qFAEE,iBAIF,qJCVE,0BACA,6BDmBF,6GCNE,yBACA,4BDwBJ,uBACE,uBACA,sBAEA,2GAGE,cAGF,0CACE,eAIJ,yEACE,uBACA,sBAGF,yEACE,qBACA,oBAoBF,oBACE,sBACA,uBACA,uBAEA,wDAEE,WAGF,4FAEE,gBAIF,qHC1FE,6BACA,4BD8FF,oFC7GE,yBACA","file":"buttons.css"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.card{--card-spacer-y: 1.5rem;--card-spacer-x: 1.25rem;--card-title-spacer-y: 0.5rem;--card-border-width: 0;--card-border-color: var(--border-color-translucent);--card-border-radius: 0.625rem;--card-box-shadow: ;--card-inner-border-radius: calc(0.375rem - 1px);--card-cap-padding-y: 1.5rem;--card-cap-padding-x: 1.25rem;--card-cap-bg: transparent;--card-cap-color: ;--card-height: ;--card-color: ;--card-bg: #fff;--card-img-overlay-padding: 1rem;--card-group-margin: 0.75rem;position:relative;display:flex;flex-direction:column;min-width:0;height:var(--card-height);word-wrap:break-word;background-color:var(--card-bg);background-clip:border-box;border:var(--card-border-width) solid var(--card-border-color);border-radius:var(--card-border-radius)}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:var(--card-inner-border-radius);border-top-right-radius:var(--card-inner-border-radius)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:var(--card-inner-border-radius);border-bottom-left-radius:var(--card-inner-border-radius)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:var(--card-spacer-y) var(--card-spacer-x);color:var(--card-color)}.card-title{margin-bottom:var(--card-title-spacer-y)}.card-subtitle{margin-top:calc(-0.5*var(--card-title-spacer-y));margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:var(--card-spacer-x)}.card-header{padding:var(--card-cap-padding-y) var(--card-cap-padding-x);margin-bottom:0;color:var(--card-cap-color);background-color:var(--card-cap-bg);border-bottom:var(--card-border-width) solid var(--card-border-color)}.card-header:first-child{border-radius:var(--card-inner-border-radius) var(--card-inner-border-radius) 0 0}.card-footer{padding:var(--card-cap-padding-y) var(--card-cap-padding-x);color:var(--card-cap-color);background-color:var(--card-cap-bg);border-top:var(--card-border-width) solid var(--card-border-color)}.card-footer:last-child{border-radius:0 0 var(--card-inner-border-radius) var(--card-inner-border-radius)}.card-header-tabs{margin-right:calc(-0.5*var(--card-cap-padding-x));margin-bottom:calc(-1*var(--card-cap-padding-y));margin-left:calc(-0.5*var(--card-cap-padding-x));border-bottom:0}.card-header-tabs .nav-link.active{background-color:var(--card-bg);border-bottom-color:var(--card-bg)}.card-header-pills{margin-right:calc(-0.5*var(--card-cap-padding-x));margin-left:calc(-0.5*var(--card-cap-padding-x))}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:var(--card-img-overlay-padding);border-radius:var(--card-inner-border-radius)}.card-img,.card-img-top,.card-img-bottom{width:100%}.card-img,.card-img-top{border-top-left-radius:var(--card-inner-border-radius);border-top-right-radius:var(--card-inner-border-radius)}.card-img,.card-img-bottom{border-bottom-right-radius:var(--card-inner-border-radius);border-bottom-left-radius:var(--card-inner-border-radius)}.card-group>.card{margin-bottom:var(--card-group-margin)}@media screen and (min-width: 36em){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-img-top,.card-group>.card:not(:last-child) .card-header{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-img-bottom,.card-group>.card:not(:last-child) .card-footer{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-img-top,.card-group>.card:not(:first-child) .card-header{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-img-bottom,.card-group>.card:not(:first-child) .card-footer{border-bottom-left-radius:0}}a.card{cursor:pointer}a.card:before{display:none}.card:not(.card--simple){--colour-body: var(--colour-body-theme);--colour-heading: var(--colour-primary);--colour-link: var(--colour-link-theme);--colour-hover: var(--colour-hover-theme);--colour-active: var(--colour-active-theme);--colour-border: var(--colour-border-theme);--colour-brand: var(--colour-primary);--btn-bg: var(--colour-warning);--btn-text: var(--colour-primary);--btn-hover-text: var(--colour-primary);--btn-tertiary-bg: var(--colour-primary);--btn-tertiary-hover-text: white}.card:not(.card--simple) .text-primary{color:var(--colour-primary) !important}.card{--spread: 0.75rem;box-shadow:0 2px var(--spread) 0 rgba(154,154,154,.25);min-height:100%;overflow:hidden;max-width:57.8125rem}.card .card-title{margin-bottom:0;padding-bottom:0}.card:hover,.card:focus{--spread: 0.375rem}.card:hover .card-body *:not(.badge),.card:focus .card-body *:not(.badge){color:var(--colour-hover) !important}.card:active{--spread: 0.1875rem}.card-header__wrapper{padding-bottom:0;padding-top:55%;position:relative;overflow:hidden;background:rgba(0,0,0,.1)}.card-header__wrapper>*{position:absolute;top:0;left:0;width:100%;height:100%}.card-header__wrapper .card-image{position:absolute;top:0;left:0;width:101%;height:101%;object-fit:cover}.card-header__wrapper .card-header{display:flex;flex-wrap:nowrap;flex-direction:column;align-items:flex-start;justify-content:space-between}.card-header__wrapper .card-logo{position:absolute;top:0;right:0;left:auto;height:3.5rem;width:8rem;object-fit:contain;object-position:right}.card-banner{padding:.5rem}.card-banner__tag{position:absolute;top:0;left:0;background-color:var(--colour-secondary);font-size:0.875rem;font-weight:bold;aspect-ratio:1;padding:.75rem;border-radius:50%;transform:translate(-0.25rem, -1.25rem) rotate(-25deg);box-shadow:0 .5rem 1rem rgba(0,0,0,.15) !important}.card-body{color:var(--colour-body)}.card-body *:last-child{padding-bottom:0;margin-bottom:0}.card-footer{padding-top:0}.row:not([class*=g-]) .card{margin-bottom:1rem}.card--simple{box-shadow:none;min-height:0;background:none}.card--simple .card-header__wrapper{border-radius:0.625rem;margin-bottom:1rem}.card--simple .card-body{padding-top:0}.card--simple .card-body,.card--simple .card-footer{padding-left:0;padding-right:0}.card--quick .card-header,.card--quick .card-footer,.card--quick .card-body>*:not(.card-title){display:none}.card--quick .card-title{margin-bottom:0;padding-bottom:0;padding-left:2em;position:relative}.card--quick .card-title:before,.card--quick .card-title:after{content:"";position:absolute;left:0;top:0;width:1.2em;height:1.2em}.card--quick .card-title:before{left:.05em;background:currentColor;mask-image:var(--icon-arrow);mask-size:50%;mask-repeat:no-repeat;mask-position:50% 50%;-webkit-mask-image:var(--icon-arrow);-webkit-mask-size:50%;-webkit-mask-repeat:no-repeat;-webkit-mask-position:50% 50%}.card--quick .card-title:after{border:2px solid currentColor;border-radius:50%}.card--small{display:flex;flex-direction:row;align-items:center;padding-inline:.5rem}.card--small .card-header__wrapper,.card--small .card-body>*:not(.card-title){display:none}.card--small .card-body,.card--small .card-footer{padding:.5rem}.card--small .card-title{margin:0}.card--small .btn{margin-right:0;white-space:nowrap}.card--small .btn:not(.btn--link){padding:.5em 1em}.card--small:not([target=_blank]) .btn-primary:not(.btn--link):after{content:"";height:1em;width:1em;margin-left:.5em;margin-right:-0.5em;display:inline-block;vertical-align:baseline;margin-bottom:-0.15em;mask-image:var(--icon-arrow);mask-size:100% 100%;mask-repeat:no-repeat;mask-position:0 0;-webkit-mask-image:var(--icon-arrow);-webkit-mask-size:100% 100%;-webkit-mask-repeat:no-repeat;-webkit-mask-position:0 0;background-color:currentColor}@media screen and (min-width: 62em){.card--small{flex-wrap:wrap}.card--small .card-footer{min-width:100%;text-align:right}}.card--danger,.card--warning,.card--success{position:relative;padding-left:1.5rem}.card--danger:after,.card--warning:after,.card--success:after{content:"";height:100%;width:1rem;background:var(--colour-danger);display:block;position:absolute;top:0;left:0}.card--warning:after{background:var(--colour-warning)}.card--success:after{background:var(--colour-success)}/*# sourceMappingURL=card.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../../node_modules/bootstrap/scss/_card.scss","../../../node_modules/bootstrap/scss/mixins/_border-radius.scss","../../sass/_functions/mixins.scss","../../sass/components/card.scss"],"names":[],"mappings":"AAIA,MAEE,wBACA,yBACA,8BACA,uBACA,qDACA,+BACA,oBACA,iDACA,6BACA,8BACA,2BACA,mBACA,gBACA,eACA,gBACA,iCACA,6BAGA,kBACA,aACA,sBACA,YACA,0BACA,qBACA,gCACA,2BACA,+DCdE,wCDkBF,SACE,eACA,cAGF,kBACE,mBACA,sBAEA,8BACE,mBCnBF,uDACA,wDDsBA,6BACE,sBCVF,2DACA,0DDgBF,8DAEE,aAIJ,WAGE,cACA,kDACA,wBAGF,YACE,yCAGF,eACE,iDACA,gBAGF,sBACE,gBAQA,sBACE,iCAQJ,aACE,4DACA,gBACA,4BACA,oCACA,sEAEA,yBCxFE,kFD6FJ,aACE,4DACA,4BACA,oCACA,mEAEA,wBCnGE,kFD6GJ,kBACE,kDACA,iDACA,iDACA,gBAEA,mCACE,gCACA,mCAIJ,mBACE,kDACA,iDAIF,kBACE,kBACA,MACA,QACA,SACA,OACA,wCCrIE,8CDyIJ,yCAGE,WAGF,wBCtII,uDACA,wDD0IJ,2BC7HI,2DACA,0DDyIF,kBACE,uCE/KA,oCF2KJ,YAQI,aACA,mBAGA,kBAEE,YACA,gBAEA,wBACE,cACA,cAKA,mCCtKJ,0BACA,6BDwKM,iGAGE,0BAEF,oGAGE,6BAIJ,oCCvKJ,yBACA,4BDyKM,mGAGE,yBAEF,sGAGE,6BG7NZ,OAEE,eAEA,cACE,aAIJ,yBDyHE,wCACA,wCACA,wCACA,0CACA,4CAEA,4CACA,sCAEA,gCACA,kCACA,wCACA,yCACA,iCAEA,uCACE,uCCrIJ,MAEE,kBACA,uDACA,gBACA,gBACA,qBAEA,kBACE,gBACA,iBAGF,wBAEE,mBAEA,0EACE,qCAIJ,aACE,oBAIJ,sBACE,iBACA,gBACA,kBACA,gBACA,0BAEA,wBAEE,kBACA,MACA,OACA,WACA,YAGF,kCACE,kBACA,MACA,OACA,WACA,YACA,iBAGF,mCACE,aACA,iBACA,sBACA,uBACA,8BAGF,iCACE,kBACA,MACA,QACA,UACA,cACA,WACA,mBACA,sBAIJ,aACE,cAEA,kBAEE,kBACA,MACA,OACA,yCACA,mBACA,iBACA,eACA,eACA,kBACA,uDACA,mDAKJ,WAEE,yBAEA,wBACE,iBACA,gBAIJ,aACE,cAIF,4BAEE,mBAKF,cAEE,gBACA,aACA,gBAEA,oCFxHE,uBE2HA,mBAGF,yBACE,cAEF,oDAEE,eACA,gBAQF,+FAGE,aAGF,yBACE,gBACA,iBACA,iBACA,kBAEA,+DAGE,WACA,kBACA,OACA,MACA,YACA,aAEF,gCAEE,WACA,wBACA,6BACA,cACA,sBACA,sBAEA,qCACA,sBACA,8BACA,8BAGF,+BACE,8BACA,kBAQN,aAEE,aACA,mBACA,mBACA,qBAEA,8EAEE,aAGF,kDAEE,cAGF,yBACE,SAGF,kBACE,eACA,mBAEA,kCACE,iBAIJ,qEAEE,WACA,WACA,UACA,iBACA,oBACA,qBACA,wBACA,sBAEA,6BACA,oBACA,sBACA,kBAEA,qCACA,4BACA,8BACA,0BACA,8BD1PA,oCCwMJ,aAwDI,eACA,0BACE,eACA,kBAKN,4CAGE,kBACA,oBAEA,8DAEE,WACA,YACA,WACA,gCACA,cACA,kBACA,MACA,OAIJ,qBACE,iCAEF,qBACE","file":"card.css"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.card-deck.container:not([data-card-type=simple]){padding-bottom:3rem}.card-deck.container:not([data-card-type=simple])>.row:first-child{padding-top:.5rem}.card-deck.container:not([data-card-type=simple])[class*=bg-]{padding-bottom:5rem}@media screen and (min-width: 36em)and (max-width: 61.99em){.card-deck .row-cols-sm-1 .card-header__wrapper{position:absolute;top:0;left:0;width:45.8%;height:100%;padding:0}.card-deck .row-cols-sm-1 .card-header__wrapper~.card-body,.card-deck .row-cols-sm-1 .card-header__wrapper~.card-footer{padding-left:calc(45.8% + 2.5rem)}}@media screen and (min-width: 62em){.card-deck:not(.card-deck--featured) .row-cols-md-1 .card-header__wrapper{position:absolute;top:0;left:0;width:45.8%;height:100%;padding:0}.card-deck:not(.card-deck--featured) .row-cols-md-1 .card-header__wrapper~.card-body,.card-deck:not(.card-deck--featured) .row-cols-md-1 .card-header__wrapper~.card-footer{padding-left:calc(45.8% + 2.5rem)}}.card-deck--featured>.row>.col:nth-child(4)~.col{display:none}.card-deck--featured>.row>.col:not(:first-child) .card-header__wrapper{display:none}.card-deck--featured .row-cols-sm-1>.col:not(:first-child) .card-header__wrapper~.card-body{padding-left:1.5rem}.card-deck--featured .card-footer{display:none}@media screen and (min-width: 62em){.card-deck--featured>.row{display:grid;grid-template-columns:1fr 1fr 41.66666667%;grid-template-rows:auto auto auto;gap:var(--gutter-y) var(--gutter-x);grid-template-areas:"featured featured card2" "featured featured card3" "featured featured card4";margin-top:0}.card-deck--featured>.row>.col:first-child{grid-area:featured}.card-deck--featured>.row>.col:not(:first-child){min-height:0}.card-deck--featured>.row>.col:nth-child(2){grid-area:card2}.card-deck--featured>.row>.col:nth-child(3){grid-area:card3}.card-deck--featured>.row>.col:nth-child(4){grid-area:card4}.card-deck--featured>.row>.col{width:100%;margin-top:0}}/*# sourceMappingURL=cardDeck.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../sass/components/cardDeck.scss","../../sass/_functions/mixins.scss"],"names":[],"mappings":"AAGA,kDAEE,oBAEA,mEACE,kBAGF,8DACE,oBAqBJ,4DAdE,gDACE,kBACA,MACA,OACA,YACA,YACA,UAEF,wHAEE,mCCvBA,oCDaF,0EACE,kBACA,MACA,OACA,YACA,YACA,UAEF,4KAEE,mCAuBF,iDACE,aAGF,uEACE,aAGF,4FACE,oBAGF,kCACE,aC3DA,oCDgEA,0BACE,aACA,2CACA,kCACA,oCACA,oBACE,8EAGF,aAEF,2CACE,mBAEF,iDACE,aAGF,4CACE,gBAGF,4CACE,gBAGF,4CACE,gBAGF,+BACE,WACA","file":"cardDeck.css"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.carousel{padding-bottom:3rem}.carousel .carousel__wrapper{position:relative}.carousel .carousel__inner{--gutter-x: 1rem;overflow:auto;scroll-snap-type:x mandatory;margin-right:calc(var(--gutter-x)*-0.5);margin-left:calc(var(--gutter-x)*-0.5)}.carousel .carousel__inner>.row{flex-wrap:nowrap;margin:0}.carousel .carousel__inner>.row>.col{padding-top:2.25rem;padding-bottom:1.5rem;scroll-snap-align:start;scroll-padding:calc(var(--gutter-x)*-1)}.carousel .carousel__item>*:last-child{margin-bottom:0;padding-bottom:0}body.js-enabled .carousel__inner{scrollbar-width:none;-ms-overflow-style:none}body.js-enabled .carousel__inner::-webkit-scrollbar{display:none}.carousel:not(.hide-controls){padding-bottom:4.5rem !important}.carousel.hide-controls .carousel__controls{display:none}.carousel .carousel__controls{position:absolute;text-align:center;width:auto;left:0;width:calc(100% + 2rem);margin-left:-1rem;margin-right:-1rem;bottom:-3rem}.carousel .carousel__controls a{width:1rem;height:1rem;min-height:1rem;border-radius:50%;text-indent:-50rem;overflow:hidden;background:currentColor;padding:0;margin:0 .5rem .5rem .5rem}.carousel .carousel__controls a:before{display:none}.carousel .carousel__controls a:first-child:last-child{display:none}.carousel .carousel__controls>a:nth-child(10)~a{display:none}.carousel.hide-btns .carousel__wrapper>.btn{display:none}.carousel:not(.hide-btns) .carousel__inner{margin-left:1.75rem;margin-right:1.75rem}.carousel .carousel__wrapper>.btn{position:absolute;top:50%;left:-1.25rem;transform:translate(0, -50%)}.carousel .carousel__wrapper>.btn.btn-next{left:auto;right:-1.25rem}@media screen and (min-width: 62em){.carousel .carousel__wrapper>.btn{margin-left:-1rem;margin-right:-1rem}}.carousel .carousel__inner>.row>.col:first-child{margin-left:0 !important}@media screen and (min-width: 36em){.carousel .carousel__controls>a:nth-child(10)~a{display:inline-block}.carousel .carousel__inner>.row[class*=row-cols-sm-]>.col{scroll-snap-align:unset}.carousel .carousel__inner>.row-cols-sm-2>.col:nth-child(odd),.carousel .carousel__inner>.row-cols-sm-3>.col:nth-child(3n+1),.carousel .carousel__inner>.row-cols-sm-4>.col:nth-child(4n+1),.carousel .carousel__inner>.row-cols-sm-5>.col:nth-child(5n+1),.carousel .carousel__inner>.row-cols-sm-6>.col:nth-child(6n+1){scroll-snap-align:start}body:not(.js-enabled) .carousel .carousel__inner>.row-cols-sm-2>.col:nth-child(odd),body:not(.js-enabled) .carousel .carousel__inner>.row-cols-sm-3>.col:nth-child(3n+1),body:not(.js-enabled) .carousel .carousel__inner>.row-cols-sm-4>.col:nth-child(4n+1),body:not(.js-enabled) .carousel .carousel__inner>.row-cols-sm-5>.col:nth-child(5n+1),body:not(.js-enabled) .carousel .carousel__inner>.row-cols-sm-6>.col:nth-child(6n+1){margin-left:4rem}.carousel .carousel__controls.cols-sm-2>a:not(:nth-child(odd)),.carousel .carousel__controls.cols-sm-3>a:not(:nth-child(3n+1)),.carousel .carousel__controls.cols-sm-4>a:not(:nth-child(4n+1)),.carousel .carousel__controls.cols-sm-5>a:not(:nth-child(5n+1)),.carousel .carousel__controls.cols-sm-6>a:not(:nth-child(6n+1)){display:none}.carousel .carousel__controls.cols-sm-2>a:first-child:nth-last-child(2),.carousel .carousel__controls.cols-sm-3>:is(a:first-child:nth-last-child(2),a:first-child:nth-last-child(3)),.carousel .carousel__controls.cols-sm-4>:is(a:first-child:nth-last-child(2),a:first-child:nth-last-child(3),a:first-child:nth-last-child(4)),.carousel .carousel__controls.cols-sm-5>:is(a:first-child:nth-last-child(2),a:first-child:nth-last-child(3),a:first-child:nth-last-child(4),a:first-child:nth-last-child(5)),.carousel .carousel__controls.cols-sm-6>:is(a:first-child:nth-last-child(2),a:first-child:nth-last-child(3),a:first-child:nth-last-child(4),a:first-child:nth-last-child(5),a:first-child:nth-last-child(6)){display:none}.carousel.hide-sm-btns .carousel__wrapper>.btn{display:none}.carousel.hide-sm-btns .carousel__inner{margin-left:0;margin-right:0}}@media screen and (min-width: 62em){.carousel .carousel__inner>.row[class*=row-cols-md-]>.col{scroll-snap-align:unset;margin-left:0}.carousel .carousel__inner>.row-cols-md-2>.col:nth-child(odd),.carousel .carousel__inner>.row-cols-md-3>.col:nth-child(3n+1),.carousel .carousel__inner>.row-cols-md-4>.col:nth-child(4n+1),.carousel .carousel__inner>.row-cols-md-5>.col:nth-child(5n+1),.carousel .carousel__inner>.row-cols-md-6>.col:nth-child(6n+1){scroll-snap-align:start}body:not(.js-enabled) .carousel .carousel__inner>.row-cols-md-2>.col:nth-child(odd),body:not(.js-enabled) .carousel .carousel__inner>.row-cols-md-3>.col:nth-child(3n+1),body:not(.js-enabled) .carousel .carousel__inner>.row-cols-md-4>.col:nth-child(4n+1),body:not(.js-enabled) .carousel .carousel__inner>.row-cols-md-5>.col:nth-child(5n+1),body:not(.js-enabled) .carousel .carousel__inner>.row-cols-md-6>.col:nth-child(6n+1){margin-left:50vw}.carousel .carousel__controls.cols-md-2>a:not(:nth-child(odd)),.carousel .carousel__controls.cols-md-3>a:not(:nth-child(3n+1)),.carousel .carousel__controls.cols-md-4>a:not(:nth-child(4n+1)),.carousel .carousel__controls.cols-md-5>a:not(:nth-child(5n+1)),.carousel .carousel__controls.cols-md-6>a:not(:nth-child(6n+1)){display:none}.carousel .carousel__controls.cols-md-2>a:first-child:nth-last-child(2),.carousel .carousel__controls.cols-md-3>:is(a:first-child:nth-last-child(2),a:first-child:nth-last-child(3)),.carousel .carousel__controls.cols-md-4>:is(a:first-child:nth-last-child(2),a:first-child:nth-last-child(3),a:first-child:nth-last-child(4)),.carousel .carousel__controls.cols-md-5>:is(a:first-child:nth-last-child(2),a:first-child:nth-last-child(3),a:first-child:nth-last-child(4),a:first-child:nth-last-child(5)),.carousel .carousel__controls.cols-md-6>:is(a:first-child:nth-last-child(2),a:first-child:nth-last-child(3),a:first-child:nth-last-child(4),a:first-child:nth-last-child(5),a:first-child:nth-last-child(6)){display:none}.carousel.hide-md-btns .carousel__wrapper>.btn{display:none}.carousel.hide-md-btns .carousel__inner{margin-left:0;margin-right:0}}/*# sourceMappingURL=carousel.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../sass/components/carousel.scss","../../sass/_functions/mixins.scss"],"names":[],"mappings":"AAGA,UACE,oBAEA,6BAEE,kBAGF,2BAEE,iBACA,cACA,6BACA,wCACA,uCAEA,gCACE,iBACA,SAEA,qCACE,oBACA,sBACA,wBACA,wCAKN,uCACE,gBACA,iBAMJ,iCAEE,qBAEA,wBAGF,oDAEE,aAKF,8BACE,iCAGF,4CACE,aAGF,8BACE,kBACA,kBACA,WACA,OACA,wBACA,kBACA,mBACA,aAEA,gCACE,WACA,YACA,gBACA,kBACA,mBACA,gBACA,wBACA,UACA,2BAEA,uCACE,aAIJ,uDACE,aAIJ,gDAEE,aAKF,4CACE,aAGF,2CAEE,oBACA,qBAGF,kCACE,kBACA,QACA,cACA,6BAEA,2CACE,UACA,eChHA,oCDwGJ,kCAaI,kBACA,oBAOJ,iDACE,yBC9HE,oCDmIF,gDAEE,qBAGF,0DACE,wBAGF,0TAKE,wBAEA,waACE,iBAIJ,+TAKE,aAIF,4rBAKE,aAIF,+CACE,aAGF,wCAEE,cACA,gBCjLA,oCDuLF,0DACE,wBACA,cAGF,0TAKE,wBAEA,waAEE,iBAIJ,+TAKE,aAIF,4rBAKE,aAIF,+CACE,aAGF,wCAEE,cACA","file":"carousel.css"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
:root{--colour-chart-1: var(--colour-primary);--colour-chart-2: var(--colour-secondary);--colour-chart-3: var(--colour-info);--colour-chart-4: var(--colour-warning);--colour-chart-5: var(--colour-dark);--colour-chart-6: var(--colour-light);--colour-chart-7: var(--colour-primary);--colour-chart-8: var(--colour-secondary);--colour-chart-9: var(--colour-info);--colour-chart-10: var(--colour-warning)}@media screen and (prefers-color-scheme: dark){:root{--colour-chart-1: var(--colour-dark);--colour-chart-5: var(--colour-light);--colour-chart-6: var(--colour-dark);--colour-chart-7: var(--colour-secondary)}}.chart__key .key:not(:first-child):nth-child(2):before,.chart:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child):nth-child(2){background:var(--colour-chart-1)}.chart.chart--line:not(.chart--none):not(.chart--pie) .line:nth-child(1){stroke:var(--colour-chart-1);z-index:9}.chart.chart--pie .pie path:nth-child(1){fill:var(--colour-chart-1)}.chart__key .key:not(:first-child):nth-child(3):before,.chart:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child):nth-child(3){background:var(--colour-chart-2)}.chart.chart--line:not(.chart--none):not(.chart--pie) .line:nth-child(2){stroke:var(--colour-chart-2);z-index:8}.chart.chart--pie .pie path:nth-child(2){fill:var(--colour-chart-2)}.chart__key .key:not(:first-child):nth-child(4):before,.chart:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child):nth-child(4){background:var(--colour-chart-3)}.chart.chart--line:not(.chart--none):not(.chart--pie) .line:nth-child(3){stroke:var(--colour-chart-3);z-index:7}.chart.chart--pie .pie path:nth-child(3){fill:var(--colour-chart-3)}.chart__key .key:not(:first-child):nth-child(5):before,.chart:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child):nth-child(5){background:var(--colour-chart-4)}.chart.chart--line:not(.chart--none):not(.chart--pie) .line:nth-child(4){stroke:var(--colour-chart-4);z-index:6}.chart.chart--pie .pie path:nth-child(4){fill:var(--colour-chart-4)}.chart__key .key:not(:first-child):nth-child(6):before,.chart:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child):nth-child(6){background:var(--colour-chart-5)}.chart.chart--line:not(.chart--none):not(.chart--pie) .line:nth-child(5){stroke:var(--colour-chart-5);z-index:5}.chart.chart--pie .pie path:nth-child(5){fill:var(--colour-chart-5)}.chart__key .key:not(:first-child):nth-child(7):before,.chart:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child):nth-child(7){background:var(--colour-chart-6)}.chart.chart--line:not(.chart--none):not(.chart--pie) .line:nth-child(6){stroke:var(--colour-chart-6);z-index:4}.chart.chart--pie .pie path:nth-child(6){fill:var(--colour-chart-6)}.chart__key .key:not(:first-child):nth-child(8):before,.chart:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child):nth-child(8){background:var(--colour-chart-7)}.chart.chart--line:not(.chart--none):not(.chart--pie) .line:nth-child(7){stroke:var(--colour-chart-7);z-index:3}.chart.chart--pie .pie path:nth-child(7){fill:var(--colour-chart-7)}.chart__key .key:not(:first-child):nth-child(9):before,.chart:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child):nth-child(9){background:var(--colour-chart-8)}.chart.chart--line:not(.chart--none):not(.chart--pie) .line:nth-child(8){stroke:var(--colour-chart-8);z-index:2}.chart.chart--pie .pie path:nth-child(8){fill:var(--colour-chart-8)}.chart__key .key:not(:first-child):nth-child(10):before,.chart:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child):nth-child(10){background:var(--colour-chart-9)}.chart.chart--line:not(.chart--none):not(.chart--pie) .line:nth-child(9){stroke:var(--colour-chart-9);z-index:1}.chart.chart--pie .pie path:nth-child(9){fill:var(--colour-chart-9)}.chart__wrapper figcaption{font-size:1rem;margin-bottom:2rem;display:block}.chart__key{padding-bottom:2rem;margin-bottom:0}.chart__key:before{content:"Key: ";display:inline-block;padding-right:1.5rem;margin-bottom:1rem;width:100%}@media screen and (min-width: 36em){.chart__key:before{width:auto}}.chart__key .key{display:inline-block;padding-right:1.5rem;margin-bottom:1rem}.chart__key .key:before{content:"";height:1em;width:1em;margin-right:.25em;background:red;display:inline-block;vertical-align:middle;margin-bottom:.2em}.chart__key .key:first-child{display:none}.chart:not(.chart--none):not(.chart--pie){--label-size: 0.75rem;--chart-ratio: 56.25%;display:flex;position:relative;margin-bottom:2rem}@media screen and (min-width: 36em){.chart:not(.chart--none):not(.chart--pie){--chart-ratio: 42.86%}}@media screen and (min-width: 62em){.chart:not(.chart--none):not(.chart--pie){--label-size: 0.875rem}}.chart:not(.chart--none):not(.chart--pie) .chart__yaxis{margin-bottom:2rem;display:flex;flex-direction:column-reverse;width:0}.chart:not(.chart--none):not(.chart--pie) .chart__yaxis .axis__point{bottom:var(--percent);position:relative;height:0;white-space:nowrap}.chart:not(.chart--none):not(.chart--pie) .chart__yaxis .axis__point:not(:last-child){display:none}.chart:not(.chart--none):not(.chart--pie) .chart__yaxis .axis__point span{display:block;transform:translate(0, -50%);padding-right:.25rem;text-align:right;font-size:var(--label-size)}.chart:not(.chart--none):not(.chart--pie) .chart__yaxis .axis__point:last-child span{transform:translate(0, -100%)}@media screen and (min-width: 36em){.chart:not(.chart--none):not(.chart--pie) .chart__yaxis{width:auto}.chart:not(.chart--none):not(.chart--pie) .chart__yaxis .axis__point:not(:last-child){display:block}.chart:not(.chart--none):not(.chart--pie) .chart__yaxis .axis__point:last-child span{transform:translate(0, -50%)}}.chart:not(.chart--none):not(.chart--pie) .chart__guidelines{position:absolute;top:0;left:0;width:100%;height:calc(100% - 2rem);margin-bottom:2rem;z-index:var(--index-below);display:flex;flex-direction:column-reverse}.chart:not(.chart--none):not(.chart--pie) .chart__guidelines .guideline{bottom:var(--percent);position:absolute;right:0;width:100%;height:0px;margin-bottom:-1px;border-bottom:1px dashed #eee}.chart:not(.chart--none):not(.chart--pie) .chart__guidelines [data-value="0"]{border-bottom:1px solid var(--colour-primary)}.chart:not(.chart--none):not(.chart--pie) .chart__guidelines [data-value="0"]:not(:first-child){border-bottom:1px dashed var(--colour-primary)}.chart:not(.chart--none):not(.chart--pie) .table__wrapper{padding-bottom:2rem;padding-right:0;margin:0;overflow-x:visible;position:relative}.chart:not(.chart--none):not(.chart--pie) .table__wrapper table{overflow:visible}.chart:not(.chart--none):not(.chart--pie) table{display:block;width:100%;padding-top:var(--chart-ratio);position:relative;margin-bottom:0}.chart:not(.chart--none):not(.chart--pie) table thead{display:none}.chart:not(.chart--none):not(.chart--pie) table tbody{display:flex;position:absolute;width:100%;height:100%;top:0;left:0;flex-direction:row;border:none}.chart:not(.chart--none):not(.chart--pie) table tbody tr{display:flex;flex-direction:row;justify-content:center;align-items:flex-end;border:none;width:100%;height:100%;position:relative;padding:0 5%}.chart:not(.chart--none):not(.chart--pie) table tbody tr td:first-child{position:absolute;top:100%;left:50%;transform:translate(-50%, 0);width:auto;padding:0;white-space:nowrap;max-width:120%;overflow:hidden;text-overflow:ellipsis;font-size:var(--label-size);display:none}@media screen and (min-width: 62em){.chart:not(.chart--none):not(.chart--pie) table tbody tr td:first-child{display:block;max-width:95%}}.chart:not(.chart--none):not(.chart--pie) table tbody tr:first-child td:first-child,.chart:not(.chart--none):not(.chart--pie) table tbody tr:last-child td:first-child{display:block}.chart:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child){height:100%;height:var(--percent, 0%);bottom:var(--bottom, 0%);width:50%;max-width:10rem;position:relative;background:green;padding:0}.chart:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child)[data-label]:before{display:none}.chart:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child) span{position:absolute;bottom:100%;left:50%;font-size:var(--label-size);line-height:1.2;transform:translate(-50%, 0);background:var(--colour-info);opacity:0;pointer-events:none;padding:.5rem;border-radius:.5rem;margin-bottom:.25rem;color:#fff;white-space:pre;text-align:center}.chart:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child) span::before{content:attr(data-group) "\a" attr(data-label) ": "}.chart:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child):hover span{opacity:1;z-index:var(--index-above)}.chart:not(.chart--none):not(.chart--pie) table tbody tr:first-child td:not(:first-child) span{left:-20%;transform:translate(0%, 0)}.chart:not(.chart--none):not(.chart--pie) table tbody tr:last-child td:not(:first-child) span{left:120%;transform:translate(-100%, 0)}@media screen and (min-width: 36em){.chart:not(.chart--none):not(.chart--pie) table tbody tr:first-child td:not(:first-child) span,.chart:not(.chart--none):not(.chart--pie) table tbody tr:last-child td:not(:first-child) span{left:50%;transform:translate(-50%, 0)}}.chart:not(.chart--none):not(.chart--pie) table tbody tr td:first-child[data-label]:before{display:none}.chart:not(.chart--none):not(.chart--pie) .line,.chart:not(.chart--none):not(.chart--pie) .pie{display:none}.chart:not(.chart--none):not(.chart--pie).chart--stacked table tbody tr{flex-direction:column-reverse;justify-content:flex-start;align-items:center}.chart.chart--line:not(.chart--none):not(.chart--pie){--line-thickness: 1px}@media screen and (min-width: 36em){.chart.chart--line:not(.chart--none):not(.chart--pie){--line-thickness: 0.8px}}@media screen and (min-width: 62em){.chart.chart--line:not(.chart--none):not(.chart--pie){--line-thickness: 0.5px}}.chart.chart--line:not(.chart--none):not(.chart--pie) table tbody{justify-content:space-between}.chart.chart--line:not(.chart--none):not(.chart--pie) table tbody tr{width:4rem;margin-left:-2rem;margin-right:-2rem;padding:0}.chart.chart--line:not(.chart--none):not(.chart--pie) table tbody tr:first-child td:first-child{transform:translate(0, 0);display:block}.chart.chart--line:not(.chart--none):not(.chart--pie) table tbody tr:last-child td:first-child{left:100%;transform:translate(-100%, 0);display:block}.chart.chart--line:not(.chart--none):not(.chart--pie) table tbody tr td:first-child{left:50% !important}.chart.chart--line:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child){position:absolute;left:50%;bottom:var(--percent);height:6px;width:6px;margin-bottom:-3px;margin-left:-3px;border-radius:3px;opacity:0}.chart.chart--line:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child):hover{opacity:1}.chart.chart--line:not(.chart--none):not(.chart--pie) table tbody tr:hover:before{content:"";border-left:1px dashed #eee;height:100%;width:0;position:absolute;top:0;left:50%;height:100%;margin-left:-1px;z-index:var(--index-below)}.chart.chart--line:not(.chart--none):not(.chart--pie) .line{display:block;position:absolute;top:0;left:0;stroke-width:var(--line-thickness);width:100%;height:calc(100% - 2rem);pointer-events:none;z-index:var(--index-below)}.chart.chart--line:not(.chart--none):not(.chart--pie) .pie{display:none}.chart.chart--pie{margin-bottom:2rem}.chart.chart--pie .chart__yaxis,.chart.chart--pie .line{display:none}.chart.chart--pie .table__wrapper{display:none}.chart.chart--pie .pies{display:flex;flex-direction:row;flex-wrap:wrap;gap:2rem}.chart.chart--pie .pie{position:relative;width:100%;aspect-ratio:1/1;min-width:12.5rem;flex:1 1 auto;display:inline-block}@media screen and (min-width: 36em){.chart.chart--pie .pie{max-width:calc(33.333% - 1.4rem)}}@media screen and (min-width: 62em){.chart.chart--pie .pie{max-width:calc(25% - 1.5rem)}}.chart.chart--pie .pie:first-child{margin-left:0}.chart.chart--pie .pie:last-child{margin-right:0}.chart.chart--pie .pie svg{width:100%;height:100%}.chart.chart--pie .pie svg path:hover{transform:scale(1.05)}.chart.chart--pie .pie foreignObject{background:var(--body-bg);border-radius:50%;z-index:var(--index-focus);pointer-events:none;display:none;padding:1rem}.chart.chart--pie .pie foreignObject div{display:flex;justify-content:center;align-items:center;height:100%}.chart.chart--pie .pie foreignObject span{text-align:center;display:block}.chart.chart--pie .pie foreignObject:nth-of-type(1){display:block}.chart.chart--pie .pie path:hover~foreignObject:nth-of-type(1){display:none}.chart.chart--pie .pie path:nth-child(1):hover~foreignObject:nth-of-type(2),.chart.chart--pie .pie path:nth-child(2):hover~foreignObject:nth-of-type(3),.chart.chart--pie .pie path:nth-child(3):hover~foreignObject:nth-of-type(4),.chart.chart--pie .pie path:nth-child(4):hover~foreignObject:nth-of-type(5),.chart.chart--pie .pie path:nth-child(5):hover~foreignObject:nth-of-type(6),.chart.chart--pie .pie path:nth-child(6):hover~foreignObject:nth-of-type(7),.chart.chart--pie .pie path:nth-child(7):hover~foreignObject:nth-of-type(8),.chart.chart--pie .pie path:nth-child(8):hover~foreignObject:nth-of-type(9){display:block}.chart__key.chart__key--none{display:none}.chart.chart--none .chart__yaxis,.chart.chart--none .line,.chart.chart--none .pie{display:none}/*# sourceMappingURL=charts.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../sass/components/charts.scss","../../sass/_functions/mixins.scss"],"names":[],"mappings":"AAiBA,MAGI,0YAIJ,+CACE,MACE,qCACA,sCACA,qCACA,2CAQF,kJAEE,iCAEF,yEACE,6BACA,UAEF,yCACE,2BATF,kJAEE,iCAEF,yEACE,6BACA,UAEF,yCACE,2BATF,kJAEE,iCAEF,yEACE,6BACA,UAEF,yCACE,2BATF,kJAEE,iCAEF,yEACE,6BACA,UAEF,yCACE,2BATF,kJAEE,iCAEF,yEACE,6BACA,UAEF,yCACE,2BATF,kJAEE,iCAEF,yEACE,6BACA,UAEF,yCACE,2BATF,kJAEE,iCAEF,yEACE,6BACA,UAEF,yCACE,2BATF,kJAEE,iCAEF,yEACE,6BACA,UAEF,yCACE,2BATF,oJAEE,iCAEF,yEACE,6BACA,UAEF,yCACE,2BAOF,2BACE,eACA,mBACA,cAMJ,YAEE,oBACA,gBAEA,mBACE,gBACA,qBACA,qBACA,mBACA,WClEA,oCD6DF,mBASI,YAIJ,iBACE,qBACA,qBACA,mBAEA,wBACE,WACA,WACA,UACA,mBACA,eACA,qBACA,sBACA,mBAGF,6BACE,aAON,0CAEE,sBACA,sBAYA,aACA,kBACA,mBCnHE,oCDkGJ,0CAOI,uBCzGA,oCDkGJ,0CAYI,wBAOF,wDACE,mBACA,aACA,8BACA,QAEA,qEAEE,sBACA,kBACA,SACA,mBAEA,sFACE,aAGF,0EACE,cACA,6BACA,qBACA,iBACA,4BAGF,qFAEE,8BChJJ,oCDqHF,wDAiCI,WAIE,sFACE,cAGF,qFAEE,8BAMR,6DAEE,kBACA,MACA,OACA,WACA,yBACA,mBACA,2BACA,aACA,8BAEA,wEAEE,sBACA,kBACA,QACA,WACA,WACA,mBACA,8BAGF,8EACE,8CAEA,gGAEE,+CAKN,0DAEE,oBACA,gBACA,SACA,mBACA,kBAEA,gEACE,iBAIJ,gDACE,cACA,WACA,+BACA,kBACA,gBAGA,sDACE,aAGF,sDAEE,aACA,kBACA,WACA,YACA,MACA,OACA,mBACA,YAGF,yDACE,aACA,mBACA,uBACA,qBACA,YACA,WACA,YACA,kBACA,aAEA,wEACE,kBACA,SACA,SACA,6BACA,WACA,UACA,mBACA,eACA,gBACA,uBACA,4BACA,aCnQJ,oCDuPE,wEAeI,cACA,eAIJ,uKAGE,cAGF,8EACE,YACA,0BACA,yBACA,UACA,gBACA,kBACA,iBACA,UAEA,iGACE,aAGF,mFACE,kBACA,YACA,SACA,4BACA,gBACA,6BACA,8BACA,UACA,oBACA,cACA,oBACA,qBACA,WACA,gBACA,kBAEA,2FACE,oDAIJ,yFACE,UACA,2BAIJ,+FAEE,UACA,2BAGF,8FAEE,UACA,8BCpUJ,oCDyUI,6LAGE,SACA,8BAKF,2FACE,aAMR,+FAEE,aAOF,wEACE,8BACA,2BACA,mBAMJ,sDAEE,sBC7WE,oCD2WJ,sDAMI,yBCjXA,oCD2WJ,sDAUI,yBAGF,kEACE,8BAEA,qEACE,WACA,kBACA,mBACA,UAGA,gGAEE,0BACA,cAEF,+FAEE,UACA,8BACA,cAGF,oFACE,oBAGF,0FACE,kBACA,SACA,sBACA,WACA,UACA,mBACA,iBACA,kBACA,UAEA,gGACE,UAKF,kFACE,WACA,4BAEA,YACA,QACA,kBACA,MACA,SACA,YACA,iBACA,2BAMR,4DACE,cACA,kBACA,MACA,OACA,mCACA,WACA,yBACA,oBACA,2BAGF,2DACE,aAMJ,kBAEE,mBAEA,wDAEE,aAEF,kCACE,aAGF,wBACE,aACA,mBACA,eACA,SAGF,uBACE,kBACA,WACA,iBACA,kBACA,cACA,qBCheA,oCD0dF,uBAUI,kCCpeF,oCD0dF,uBAcI,8BAIF,mCACE,cAEF,kCACE,eAIJ,2BACE,WACA,YAEA,sCACE,sBAIJ,qCACE,0BACA,kBACA,2BACA,oBACA,aACA,aAEA,yCACE,aACA,uBACF,mBACE,YAEF,0CACE,kBACA,cAKF,oDACE,cAEF,+DACE,aAEF,gmBAQE,cAON,6BACE,aAIA,kFAGE","file":"charts.css"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.row{--gutter-x: 1rem;--gutter-y: 0;display:flex;flex-wrap:wrap;margin-top:calc(-1*var(--gutter-y));margin-right:calc(-0.5*var(--gutter-x));margin-left:calc(-0.5*var(--gutter-x))}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--gutter-x)*.5);padding-left:calc(var(--gutter-x)*.5);margin-top:var(--gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--gutter-x: 0}.g-0,.gy-0{--gutter-y: 0}.g-1,.gx-1{--gutter-x: 0.25rem}.g-1,.gy-1{--gutter-y: 0.25rem}.g-2,.gx-2{--gutter-x: 0.5rem}.g-2,.gy-2{--gutter-y: 0.5rem}.g-3,.gx-3{--gutter-x: 1rem}.g-3,.gy-3{--gutter-y: 1rem}.g-4,.gx-4{--gutter-x: 1.5rem}.g-4,.gy-4{--gutter-y: 1.5rem}.g-5,.gx-5{--gutter-x: 3rem}.g-5,.gy-5{--gutter-y: 3rem}@media screen and (min-width: 36em){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--gutter-x: 0}.g-sm-0,.gy-sm-0{--gutter-y: 0}.g-sm-1,.gx-sm-1{--gutter-x: 0.25rem}.g-sm-1,.gy-sm-1{--gutter-y: 0.25rem}.g-sm-2,.gx-sm-2{--gutter-x: 0.5rem}.g-sm-2,.gy-sm-2{--gutter-y: 0.5rem}.g-sm-3,.gx-sm-3{--gutter-x: 1rem}.g-sm-3,.gy-sm-3{--gutter-y: 1rem}.g-sm-4,.gx-sm-4{--gutter-x: 1.5rem}.g-sm-4,.gy-sm-4{--gutter-y: 1.5rem}.g-sm-5,.gx-sm-5{--gutter-x: 3rem}.g-sm-5,.gy-sm-5{--gutter-y: 3rem}}@media screen and (min-width: 62em){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--gutter-x: 0}.g-md-0,.gy-md-0{--gutter-y: 0}.g-md-1,.gx-md-1{--gutter-x: 0.25rem}.g-md-1,.gy-md-1{--gutter-y: 0.25rem}.g-md-2,.gx-md-2{--gutter-x: 0.5rem}.g-md-2,.gy-md-2{--gutter-y: 0.5rem}.g-md-3,.gx-md-3{--gutter-x: 1rem}.g-md-3,.gy-md-3{--gutter-y: 1rem}.g-md-4,.gx-md-4{--gutter-x: 1.5rem}.g-md-4,.gy-md-4{--gutter-y: 1.5rem}.g-md-5,.gx-md-5{--gutter-x: 3rem}.g-md-5,.gy-md-5{--gutter-y: 3rem}}.container{display:block;margin-left:auto;margin-right:auto;padding:var(--container-padding);width:100%}.container:not(.container-fluid){max-width:80rem}.container .container:not(.container-xs-breakout){padding-left:0;padding-right:0;padding-bottom:0;padding-top:0}.container[class*=bg-]{padding-top:3rem;padding-bottom:2rem}.container[class*=bg-]+.container:not([class*=bg-]){padding-top:2rem}.container:before{display:table;clear:both;content:""}.container:after{display:table;clear:both;content:""}.container.container-xs-breakout{margin-left:-1.25rem;margin-right:-1.25rem;width:calc(100% + 2.5rem)}@media screen and (min-width: 36em){.container.container-xs-breakout{margin-left:auto;margin-right:auto;width:100%}}.container{position:relative;z-index:1}.container>.circle{position:absolute;z-index:var(--index-below);border-width:3px}.container:not([class*=circle-pattern-])>.circle{font-size:18.75rem;top:-4.6875rem;left:-12.5rem}.container:not([class*=circle-pattern-])>.circle~.circle{font-size:21.875rem;top:auto;left:auto;right:-6.25rem;bottom:-12.5rem}@media screen and (min-width: 36em){.container:not([class*=circle-pattern-])>.circle{font-size:28.125rem;top:-3.125rem;left:-10.9375rem}.container:not([class*=circle-pattern-])>.circle~.circle{font-size:31.25rem;right:-9.375rem;bottom:-9.375rem}}.container.circle-pattern-2>.circle{font-size:18.75rem;top:-4.6875rem;right:-12.5rem}.container.circle-pattern-2>.circle~.circle{font-size:28.125rem;top:auto;bottom:-3.125rem;left:-10.9375rem}@media screen and (min-width: 36em){.container.circle-pattern-2>.circle{font-size:28.125rem;top:-4.6875rem;right:-12.5rem}.container.circle-pattern-2>.circle~.circle{font-size:31.25rem;bottom:-4.6875rem;left:-12.5rem}}@media screen and (min-width: 62em){.container>.circle{margin-left:3.75rem;margin-right:3.75rem}}.container--curve-below{padding-bottom:calc(100px + 1rem)}@media screen and (min-width: 36em){.container--curve-below{padding-bottom:calc(150px + 1rem)}}@media screen and (min-width: 62em){.container--curve-below{padding-bottom:calc(200px + 1rem)}}.container--curve{position:relative;width:576px;padding-top:calc(100px + 16px) !important;margin-top:-100px;margin-left:calc(-288px + 50vw);clip-path:path("M0,10 L2,10 C288,20 288,95 574,70 L578,70 L576,5000 L0,5000 Z");padding-inline:calc((288px - 50vw) + var(--container-padding-x))}@media screen and (min-width: 36em){.container--curve{width:992px;padding-top:calc(150px + 16px) !important;margin-top:-150px;margin-left:calc(-496px + 50vw);clip-path:path("M0,15 L2,15 C496,30 496,142.5 990,105 L994,105 L992,5000 L0,5000 Z")}}@media screen and (min-width: 62em){.container--curve{width:1440px;max-width:1440px !important;padding-top:calc(200px + 16px) !important;margin-top:-200px;margin-left:calc(-720px + 50vw);clip-path:path("M0,20 L2,20 C720,40 720,190 1438,140 L1442,140 L1440,5000 L0,5000 Z")}}.container--curve--right{position:relative;width:576px;padding-top:calc(100px + 16px) !important;margin-top:-100px;margin-left:calc(-288px + 50vw);clip-path:path("M0,70 L2,70 C288,95 288,20 574,10 L578,10 L576,5000 L0,5000 Z");padding-inline:calc((288px - 50vw) + var(--container-padding-x))}@media screen and (min-width: 36em){.container--curve--right{width:992px;padding-top:calc(150px + 16px) !important;margin-top:-150px;margin-left:calc(-496px + 50vw);clip-path:path("M0,105 L2,105 C496,142.5 496,30 990,15 L994,15 L992,5000 L0,5000 Z")}}@media screen and (min-width: 62em){.container--curve--right{width:1440px;max-width:1440px !important;padding-top:calc(200px + 16px) !important;margin-top:-200px;margin-left:calc(-720px + 50vw);clip-path:path("M0,140 L2,140 C720,190 720,40 1438,20 L1442,20 L1440,5000 L0,5000 Z")}}.container--curve--up{position:relative;width:576px;padding-top:calc(100px + -16px) !important;margin-top:-100px;margin-left:calc(-288px + 50vw);clip-path:path("M0,90 L2,90 C288,0 288,0 574,90 L578,90 L576,5000 L0,5000 Z");padding-inline:calc((288px - 50vw) + var(--container-padding-x))}@media screen and (min-width: 36em){.container--curve--up{width:992px;padding-top:calc(150px + -16px) !important;margin-top:-150px;margin-left:calc(-496px + 50vw);clip-path:path("M0,135 L2,135 C496,0 496,0 990,135 L994,135 L992,5000 L0,5000 Z")}}@media screen and (min-width: 62em){.container--curve--up{width:1440px;max-width:1440px !important;padding-top:calc(200px + -16px) !important;margin-top:-200px;margin-left:calc(-720px + 50vw);clip-path:path("M0,180 L2,180 C720,0 720,0 1438,180 L1442,180 L1440,5000 L0,5000 Z")}}.container--curve--down{position:relative;width:576px;padding-top:calc(100px + 16px) !important;margin-top:-100px;margin-left:calc(-288px + 50vw);clip-path:path("M0,0 L2,0 C288,90 288,90 574,0 L578,0 L576,5000 L0,5000 Z");padding-inline:calc((288px - 50vw) + var(--container-padding-x))}@media screen and (min-width: 36em){.container--curve--down{width:992px;padding-top:calc(150px + 16px) !important;margin-top:-150px;margin-left:calc(-496px + 50vw);clip-path:path("M0,0 L2,0 C496,135 496,135 990,0 L994,0 L992,5000 L0,5000 Z")}}@media screen and (min-width: 62em){.container--curve--down{width:1440px;max-width:1440px !important;padding-top:calc(200px + 16px) !important;margin-top:-200px;margin-left:calc(-720px + 50vw);clip-path:path("M0,0 L2,0 C720,180 720,180 1438,0 L1442,0 L1440,5000 L0,5000 Z")}}[class*=container--curve]{position:relative}@media(min-width: 80em){[class*=container--curve]{margin-left:auto;padding-inline:var(--container-padding-x)}}/*# sourceMappingURL=container.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../../node_modules/bootstrap/scss/_grid.scss","../../../node_modules/bootstrap/scss/mixins/_grid.scss","../../sass/_functions/mixins.scss","../../sass/components/container.scss"],"names":[],"mappings":"AAKE,sBCCA,cACA,aACA,eAEA,oCACA,wCACA,uCDJE,OCaF,cACA,WACA,eACA,uCACA,sCACA,2BA+CI,KACE,YAGF,iBApCJ,cACA,WAcA,cACE,cACA,WAFF,cACE,cACA,UAFF,cACE,cACA,qBAFF,cACE,cACA,UAFF,cACE,cACA,UAFF,cACE,cACA,qBA+BE,UAhDJ,cACA,WAqDQ,OAhEN,cACA,kBA+DM,OAhEN,cACA,mBA+DM,OAhEN,cACA,UA+DM,OAhEN,cACA,mBA+DM,OAhEN,cACA,mBA+DM,OAhEN,cACA,UA+DM,OAhEN,cACA,mBA+DM,OAhEN,cACA,mBA+DM,OAhEN,cACA,UA+DM,QAhEN,cACA,mBA+DM,QAhEN,cACA,mBA+DM,QAhEN,cACA,WAuEQ,UAxDV,wBAwDU,UAxDV,yBAwDU,UAxDV,gBAwDU,UAxDV,yBAwDU,UAxDV,yBAwDU,UAxDV,gBAwDU,UAxDV,yBAwDU,UAxDV,yBAwDU,UAxDV,gBAwDU,WAxDV,yBAwDU,WAxDV,yBAmEM,WAEE,cAGF,WAEE,cAPF,WAEE,oBAGF,WAEE,oBAPF,WAEE,mBAGF,WAEE,mBAPF,WAEE,iBAGF,WAEE,iBAPF,WAEE,mBAGF,WAEE,mBAPF,WAEE,iBAGF,WAEE,iBCnHN,oCDmEE,QACE,YAGF,oBApCJ,cACA,WAcA,iBACE,cACA,WAFF,iBACE,cACA,UAFF,iBACE,cACA,qBAFF,iBACE,cACA,UAFF,iBACE,cACA,UAFF,iBACE,cACA,qBA+BE,aAhDJ,cACA,WAqDQ,UAhEN,cACA,kBA+DM,UAhEN,cACA,mBA+DM,UAhEN,cACA,UA+DM,UAhEN,cACA,mBA+DM,UAhEN,cACA,mBA+DM,UAhEN,cACA,UA+DM,UAhEN,cACA,mBA+DM,UAhEN,cACA,mBA+DM,UAhEN,cACA,UA+DM,WAhEN,cACA,mBA+DM,WAhEN,cACA,mBA+DM,WAhEN,cACA,WAuEQ,aAxDV,cAwDU,aAxDV,wBAwDU,aAxDV,yBAwDU,aAxDV,gBAwDU,aAxDV,yBAwDU,aAxDV,yBAwDU,aAxDV,gBAwDU,aAxDV,yBAwDU,aAxDV,yBAwDU,aAxDV,gBAwDU,cAxDV,yBAwDU,cAxDV,yBAmEM,iBAEE,cAGF,iBAEE,cAPF,iBAEE,oBAGF,iBAEE,oBAPF,iBAEE,mBAGF,iBAEE,mBAPF,iBAEE,iBAGF,iBAEE,iBAPF,iBAEE,mBAGF,iBAEE,mBAPF,iBAEE,iBAGF,iBAEE,kBCnHN,oCDmEE,QACE,YAGF,oBApCJ,cACA,WAcA,iBACE,cACA,WAFF,iBACE,cACA,UAFF,iBACE,cACA,qBAFF,iBACE,cACA,UAFF,iBACE,cACA,UAFF,iBACE,cACA,qBA+BE,aAhDJ,cACA,WAqDQ,UAhEN,cACA,kBA+DM,UAhEN,cACA,mBA+DM,UAhEN,cACA,UA+DM,UAhEN,cACA,mBA+DM,UAhEN,cACA,mBA+DM,UAhEN,cACA,UA+DM,UAhEN,cACA,mBA+DM,UAhEN,cACA,mBA+DM,UAhEN,cACA,UA+DM,WAhEN,cACA,mBA+DM,WAhEN,cACA,mBA+DM,WAhEN,cACA,WAuEQ,aAxDV,cAwDU,aAxDV,wBAwDU,aAxDV,yBAwDU,aAxDV,gBAwDU,aAxDV,yBAwDU,aAxDV,yBAwDU,aAxDV,gBAwDU,aAxDV,yBAwDU,aAxDV,yBAwDU,aAxDV,gBAwDU,cAxDV,yBAwDU,cAxDV,yBAmEM,iBAEE,cAGF,iBAEE,cAPF,iBAEE,oBAGF,iBAEE,oBAPF,iBAEE,mBAGF,iBAEE,mBAPF,iBAEE,iBAGF,iBAEE,iBAPF,iBAEE,mBAGF,iBAEE,mBAPF,iBAEE,iBAGF,iBAEE,kBEnHV,WACE,cACA,iBACA,kBACA,iCACA,WAEA,iCACE,gBAGF,kDACE,eACA,gBACA,iBACA,cAGF,uBACE,iBACA,oBAGF,oDAEE,iBAKF,kBACE,cACA,WACA,WAEF,iBACE,cACA,WACA,WAGF,iCACE,qBACA,sBACA,0BD5CA,oCCyCF,iCAMI,iBACA,kBACA,YAON,WACE,kBACA,UAEA,mBAEE,kBACA,2BACA,iBAIF,iDACE,mBACA,eACA,cAGF,yDAEE,oBACA,SACA,UACA,eACA,gBDhFA,oCCoFA,iDACE,oBACA,cACA,iBAGF,yDAEE,mBACA,gBACA,kBAKJ,oCACE,mBACA,eACA,eAGF,4CACE,oBACA,SACA,iBACA,iBD7GA,oCCiHA,oCACE,oBACA,eACA,eAEF,4CACE,mBACA,kBACA,eDzHF,oCC+HA,mBACE,oBACA,sBA8DN,wBAEE,kCDjME,oCC+LJ,wBAKI,mCDpMA,oCC+LJ,wBAQI,mCAIJ,kBA9DE,kBAUA,YACA,0CACA,kBACA,gCACA,gFAEA,iED7JE,oCC2MJ,kBApCI,YACA,0CACA,kBACA,gCACA,sFD3KA,oCC2MJ,kBArBI,aACA,4BACA,0CACA,kBACA,gCACA,uFAoBJ,yBAlEE,kBAUA,YACA,0CACA,kBACA,gCACA,gFAEA,iED7JE,oCC+MJ,yBAxCI,YACA,0CACA,kBACA,gCACA,sFD3KA,oCC+MJ,yBAzBI,aACA,4BACA,0CACA,kBACA,gCACA,uFAwBJ,sBAtEE,kBAUA,YACA,2CACA,kBACA,gCACA,8EAEA,iED7JE,oCCmNJ,sBA5CI,YACA,2CACA,kBACA,gCACA,mFD3KA,oCCmNJ,sBA7BI,aACA,4BACA,2CACA,kBACA,gCACA,sFA4BJ,wBA1EE,kBAUA,YACA,0CACA,kBACA,gCACA,4EAEA,iED7JE,oCCuNJ,wBAhDI,YACA,0CACA,kBACA,gCACA,+ED3KA,oCCuNJ,wBAjCI,aACA,4BACA,0CACA,kBACA,gCACA,kFAiCJ,0BAEE,kBAEA,wBAJF,0BAKI,iBACA","file":"container.css"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.form-control__wrapper{margin-bottom:1.5rem;max-width:50rem;position:relative}.form-control__wrapper label{display:block}.form-control__wrapper label[title]:after{content:"";display:inline-block;margin-left:.25em;margin-bottom:.1em;width:1em;height:1em;vertical-align:text-bottom;background:currentColor;mask-image:var(--icon-question);mask-size:100%;mask-repeat:no-repeat;mask-position:50% 50%;-webkit-mask-image:var(--icon-question);-webkit-mask-size:100%;-webkit-mask-repeat:no-repeat;-webkit-mask-position:50% 50%}.form-control-inline{display:flex;align-items:center}.form-control-inline label{white-space:nowrap;padding-right:1rem}.form-control-color{width:3rem;height:3rem;overflow:hidden;padding:0}.input-group>.form-control-color{flex:0 0 3rem}.form-control-color::-moz-color-swatch{height:3rem;border-radius:0;border:none}.form-control-color::-webkit-color-swatch{height:3rem;border-radius:0;border:none}.input-group .form-range{flex:1 1 0;height:auto;margin-right:1rem}.form-check input,.form-check label{cursor:pointer}.form-check input:not([disabled])+label:hover,.form-check input:not([disabled]):hover+label,.form-check input:not([disabled]):focus+label{color:var(--colour-hover);border-color:var(--colour-hover)}.form-check+.form-check{margin-top:-0.5rem}.form-check-label{float:left}.form-check-label+.form-check-input{margin-left:1rem;margin-right:.5rem}.conditional{display:none}input:checked+.conditional,input:checked+label+.conditional{display:block;clear:both}input:not([class*=conditional-input-]):nth-of-type(1):checked~.conditional-1,input:not([class*=conditional-input-]):nth-of-type(2):checked~.conditional-2,input:not([class*=conditional-input-]):nth-of-type(3):checked~.conditional-3,input:not([class*=conditional-input-]):nth-of-type(4):checked~.conditional-4,input:not([class*=conditional-input-]):nth-of-type(5):checked~.conditional-5,input.conditional-input-1:checked~.conditional-1,input.conditional-input-2:checked~.conditional-2,input.conditional-input-3:checked~.conditional-3,input.conditional-input-4:checked~.conditional-4,input.conditional-input-5:checked~.conditional-5{display:block;clear:both}select[multiple]{border-radius:.35rem}select[multiple]::-webkit-scrollbar{width:.7rem}select[multiple]::-webkit-scrollbar *{background-color:rgba(0,0,0,0)}select[multiple]::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.2);border-radius:.35rem}.form-control__wrapper :is(.prefix,.suffix){color:#212529;background:#e9ecef;padding:.75em 1em;font-size:1rem;font-weight:normal;line-height:1.5;position:absolute;bottom:1px}.form-control__wrapper .prefix{border-top-left-radius:.625rem;border-bottom-left-radius:.625rem;left:1px}.form-control__wrapper :is(.prefix-sm,.suffix-sm){font-size:var(--fs-small)}.form-control__wrapper :is(.prefix-lg,.suffix-lg){font-size:1.5rem}.form-control__wrapper .prefix+.form-control{padding-left:4em}.form-control__wrapper .suffix+.form-control{padding-right:4em}.form-control__wrapper .suffix{left:auto;right:1px;border-top-right-radius:.625rem;border-bottom-right-radius:.625rem}.form-control__wrapper.form-control--lrg-file{aspect-ratio:4/2;border:1px dashed var(--colour-selected);position:relative}.form-control__wrapper.form-control--lrg-file .icon{position:absolute;top:50%;left:50%;transform:translate(-50%, calc(-50% - 1rem));color:var(--colour-muted);font-size:5rem;height:1em;width:1em;pointer-events:none}.form-control__wrapper.form-control--lrg-file>label{position:absolute;top:calc(50% + 2rem);left:50%;transform:translate(-50%, -50%);width:100%;text-align:center}.form-control__wrapper.form-control--lrg-file>input{position:absolute;top:0;left:0;height:100%;width:100%;opacity:0}.file-uploaded .form-control__wrapper.form-control--lrg-file{border:3px solid var(--colour-success);border-radius:50%;aspect-ratio:1;margin-inline:auto;max-width:10rem}.file-uploaded .form-control__wrapper.form-control--lrg-file>label{content:"File uploaded"}.file-upload__add{display:none}.file-uploaded .file-upload__add{display:block;margin-inline:auto;color:var(--colour-muted);font-size:0.875rem;text-align:center;margin-top:-1rem;margin-bottom:1rem;cursor:pointer}/*# sourceMappingURL=forms.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../sass/components/forms.scss","../../sass/_functions/variables.scss","../../../node_modules/bootstrap/scss/_variables.scss"],"names":[],"mappings":"AAEA,uBACE,qBACA,UCySkB,MDxSlB,kBAEA,6BACE,cAEA,0CAEE,WACA,qBACA,kBACA,mBACA,UACA,WACA,2BACA,wBACA,gCACA,eACA,sBACA,sBACA,wCACA,uBACA,8BACA,8BAMN,qBACE,aACA,mBAEA,2BACE,mBACA,mBAIJ,oBACE,MEizBsC,KFhzBtC,OEgzBsC,KF/yBtC,gBACA,UAEA,iCAEE,cAGF,uCACE,OEsyBoC,KFryBpC,gBACA,YAGF,0CACE,OEgyBoC,KF/xBpC,gBACA,YAMF,yBACE,WACA,YACA,kBAOF,oCAEE,eAGF,0IAIE,0BACA,iCAGJ,wBACE,mBAGF,kBACE,WAGF,oCAEE,iBACA,mBAMF,aACE,aAGF,4DAEE,cACA,WAGF,snBAUE,cACA,WAKF,iBACE,qBAEF,oCACE,YAEF,sCACE,+BAEF,0CACE,gCAEA,qBAMF,4CAEE,cACA,mBACA,kBACA,eACA,mBACA,gBACA,kBACA,WAGF,+BAEE,+BACA,kCACA,SAGF,kDAEE,0BAEF,kDAEE,iBAGF,6CACE,iBAEF,6CACE,kBAGF,+BACE,UACA,UACA,gCACA,mCAQF,8CACE,iBACA,yCACA,kBAEA,oDACE,kBACA,QACA,SACA,6CACA,0BACA,eACA,WACA,UACA,oBAGF,oDAEE,kBACA,qBACA,SACA,gCACA,WACA,kBAGF,oDACE,kBACA,MACA,OACA,YACA,WACA,UAGF,6DACE,uCACA,kBACA,eACA,mBACA,gBAEA,mEACE,wBAKN,kBACE,aAEA,iCACE,cACA,mBACA,0BACA,mBACA,kBACA,iBACA,mBACA","file":"forms.css"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.header-banner{background:linear-gradient(180deg, var(--colour-secondary) 0, var(--colour-info) 100%);margin-bottom:2rem;position:relative;overflow:hidden;max-width:100% !important}@media screen and (min-width: 62em){.header-banner{min-height:29.375rem}}.header-banner>.container{padding-bottom:0;position:relative}.header-banner .breadcrumb{margin-top:1.5rem;margin-bottom:-0.5rem}@media screen and (min-width: 62em){.header-banner .breadcrumb{position:absolute;top:0;left:3.75rem}}.header-banner__inner{--colour-body: var(--colour-body-theme);--colour-heading: var(--colour-primary);--colour-link: var(--colour-link-theme);--colour-hover: var(--colour-hover-theme);--colour-active: var(--colour-active-theme);--colour-border: var(--colour-border-theme);--colour-brand: var(--colour-primary);--btn-bg: var(--colour-warning);--btn-text: var(--colour-primary);--btn-hover-text: var(--colour-primary);--btn-tertiary-bg: var(--colour-primary);--btn-tertiary-hover-text: white;color:var(--colour-body);background:#fff;padding:2rem;margin:1.875rem 0;position:relative;z-index:var(--index-above)}.header-banner__inner .text-primary{color:var(--colour-primary) !important}@media screen and (min-width: 62em){.header-banner__inner{max-width:37.5rem;margin:7rem 0 5rem 0;padding:3.5rem 4rem}}.header-banner__inner>*:last-child{padding-bottom:0;margin-bottom:0}.header-banner picture img{display:none}@media screen and (min-width: 62em){.header-banner picture img{display:block;position:absolute;top:-0.5%;left:40%;height:101%;object-fit:cover;width:60%;pointer-events:none}}::slotted(.breadcrumb){margin-top:1.5rem !important;margin-bottom:-0.5rem !important}@media screen and (min-width: 62em){::slotted(.breadcrumb){position:absolute !important;top:0 !important;left:5.25rem !important}}::slotted(*:last-child){padding-bottom:0 !important;margin-bottom:0 !important}/*# sourceMappingURL=header.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../sass/components/header.scss","../../sass/_functions/mixins.scss"],"names":[],"mappings":"AAEA,eACE,uFACA,mBACA,kBACA,gBACA,0BCDE,oCDJJ,eAUI,sBAGF,0BACE,iBACA,kBAGF,2BAEE,kBACA,sBCjBA,oCDcF,2BAMI,kBACA,MACA,cAIJ,sBCwGA,wCACA,wCACA,wCACA,0CACA,4CAEA,4CACA,sCAEA,gCACA,kCACA,wCACA,yCACA,iCDjHE,yBACA,gBACA,aACA,kBACA,kBACA,2BC8GF,oCACE,uCAlJA,oCD0BF,sBAYI,kBACA,qBACA,qBAGF,mCACE,iBACA,gBAIJ,2BACE,aClDA,oCDiDF,2BAGI,cACA,kBACA,UACA,SACA,YACA,iBACA,UACA,qBAON,uBACE,6BACA,iCCpEE,oCDkEJ,uBAKI,6BACA,iBACA,yBAIJ,wBACE,4BACA","file":"header.css"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
a,.link{color:var(--colour-link);display:inline-block;min-height:1.75em;margin-bottom:1rem;position:relative;text-decoration:none;background:none;border:none}a:not(.text-decoration-none):not(.btn):before,.link:not(.text-decoration-none):not(.btn):before{content:"";position:absolute;left:50%;bottom:0;width:100%;height:2px;background-color:var(--colour-underline);-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);-webkit-transition:.3s ease-in;transition:.3s ease-in}a:not(.text-decoration-none):not(.btn):hover:before,.card:hover a:before,details[open] a:not(.text-decoration-none):not(.btn):before,.link:not(.text-decoration-none):not(.btn):hover:before,.card:hover .link:before,details[open] .link:not(.text-decoration-none):not(.btn):before{width:0%}a:is(:hover,:focus,.focus),.card:hover a,.card:focus a,.link:is(:hover,:focus,.focus),.card:hover .link,.card:focus .link{color:var(--colour-hover)}a:active,a.active,.card:active a,.link:active,.link.active,.card:active .link{color:var(--colour-active)}a[target=_blank]:not(.card):after,a.card[target=_blank] .btn:after,.link[target=_blank]:not(.card):after,.link.card[target=_blank] .btn:after{content:"";height:1em;width:1em;margin-left:.5em;margin-right:-0.2em;display:inline-block;vertical-align:baseline;margin-bottom:-0.15em;mask-image:var(--icon-blank);mask-size:100% 100%;mask-repeat:no-repeat;mask-position:0 0;-webkit-mask-image:var(--icon-blank);-webkit-mask-size:100% 100%;-webkit-mask-repeat:no-repeat;-webkit-mask-position:0 0;background-color:currentColor}p a,ul a,ol a,dd a,.body a,table:not(.table--email) td a{min-height:none;display:inline;margin-bottom:0;text-decoration:underline;text-underline-offset:.2em;text-decoration-thickness:2px;text-decoration-color:var(--colour-underline)}p a:hover,p a:focus,p a:active,ul a:hover,ul a:focus,ul a:active,ol a:hover,ol a:focus,ol a:active,dd a:hover,dd a:focus,dd a:active,.body a:hover,.body a:focus,.body a:active,table:not(.table--email) td a:hover,table:not(.table--email) td a:focus,table:not(.table--email) td a:active{text-decoration:none}p a:before,ul a:before,ol a:before,dd a:before,.body a:before,table:not(.table--email) td a:before{display:none}p a[target=_blank]:after,ul a[target=_blank]:after,ol a[target=_blank]:after,dd a[target=_blank]:after,.body a[target=_blank]:after,table:not(.table--email) td a[target=_blank]:after{margin-left:.25em;margin-right:.2em}/*# sourceMappingURL=links.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../sass/components/links.scss","../../sass/_functions/mixins.scss"],"names":[],"mappings":"AAEA,QCqCI,yBDlCF,qBACA,kBACA,mBACA,kBACA,qBACA,gBACA,YAEA,gGACE,WACA,kBACA,SACA,SACA,WACA,WCoBA,yCDlBA,mCACA,+BACA,2BACA,+BACA,uBAGF,sRAGE,SAGF,0HCKE,0BDCF,8ECDE,2BDOF,8IAGE,WACA,WACA,UACA,iBACA,oBACA,qBACA,wBACA,sBAEA,6BACA,oBACA,sBACA,kBAEA,qCACA,4BACA,8BACA,0BACA,8BAKF,yDACE,gBACA,eACA,gBACA,0BACA,2BACA,8BACA,8CAEA,6RAIE,qBAGF,mGAEE,aAGF,uLACE,kBACA","file":"links.css"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
:is(ol,ul) li{max-width:50rem}.tick-list{padding-left:0}.tick-list li{position:relative;list-style:none;padding-bottom:1rem;padding-left:2.5rem}.tick-list li:before{content:"";position:absolute;top:0;left:0;width:1.5em;height:1.5em;background:var(--colour-secondary);mask-image:var(--icon-tick);mask-size:100%;mask-repeat:no-repeat;mask-position:50% 50%;-webkit-mask-image:var(--icon-tick);-webkit-mask-size:100%;-webkit-mask-repeat:no-repeat;-webkit-mask-position:50% 50%}.tick-list li.tick--warning:before{background:var(--colour-warning);mask-image:var(--icon-warning);-webkit-mask-image:var(--icon-warning)}.tick-list li.tick--danger:before{background:var(--colour-danger);mask-image:var(--icon-warning);-webkit-mask-image:var(--icon-warning)}.tick-list li.tick--incomplete:before{background:var(--colour-admin);mask-image:none;-webkit-mask-image:none;border-radius:50%;transform:scale(0.8)}.tick-list li[class*=bg-]{padding:1rem;padding-left:4rem;margin-bottom:1rem;border-radius:.5rem;z-index:0}.tick-list li[class*=bg-]:before,.tick-list li[class*=bg-]:after{top:50%;left:1rem;width:2rem;height:2rem;margin-top:-1rem}.tick-list li[class*=bg-]:after{content:"";position:absolute;z-index:-1;background-color:#fff;border-radius:50%;transform-origin:50% 50%;transform:scale(0.9)}.breadcrumb{font-size:0.875rem;padding-left:0;list-style:none}.breadcrumb li{display:inline-block}.breadcrumb li:not(:first-child):before{content:" / ";font-weight:bold;color:var(--colour-link)}.breadcrumb li a{text-decoration:none;text-transform:uppercase}.orderable-list{margin-left:3.5rem;counter-reset:countItem;padding-left:0}.orderable-list li{position:relative;list-style:none;--spread: 0.75rem;box-shadow:0 2px var(--spread) 0 rgba(154,154,154,.25);padding:1rem;margin-bottom:1rem;border-radius:.5rem;cursor:grab}.orderable-list li:before{content:"";--gradient-direction: 180deg;background-color:var(--colour-info);background-image:linear-gradient(var(--gradient-direction), var(--colour-secondary) 0, transparent 100%) !important;height:100%;width:2.5rem;display:inline-block;position:absolute;top:0;right:calc(100% + 1rem);border-radius:.5rem}.orderable-list li:after{counter-increment:countItem;content:counter(countItem);height:2rem;width:2.5rem;line-height:2rem;font-size:1.25rem;font-weight:bold;display:inline-block;position:absolute;top:calc(50% - 1rem);right:calc(100% + 1rem);text-align:center}/*# sourceMappingURL=lists.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../sass/_functions/mixins.scss","../../sass/components/lists.scss","../../sass/_functions/variables.scss"],"names":[],"mappings":"CAgIc,cC7HZ,UC0SkB,MDvSpB,WAEE,eAEA,cACE,kBACA,gBACA,oBACA,oBAEA,qBAEE,WACA,kBACA,MACA,OACA,YACA,aAEA,mCACA,4BACA,eACA,sBACA,sBACA,oCACA,uBACA,8BACA,8BAGF,mCAEE,iCACA,+BACA,uCAGF,kCAEE,gCACA,+BACA,uCAGF,sCAEE,+BACA,gBACA,wBACA,kBACA,qBAGF,0BACE,aACA,kBACA,mBACA,oBACA,UAEA,iEAGE,QACA,UACA,WACA,YACA,iBAGF,gCAEE,WACA,kBACA,WACA,sBACA,kBACA,yBACA,qBAQR,YAEE,mBACA,eACA,gBAEA,eACE,qBAEA,wCACE,cACA,iBACA,yBAGF,iBACE,qBACA,yBAKN,gBAEE,mBACA,wBACA,eAEA,mBACE,kBACA,gBACA,kBACA,uDACA,aACA,mBACA,oBACA,YAGF,0BACE,WACA,6BACA,oCACA,oHACA,YACA,aACA,qBACA,kBACA,MACA,wBACA,oBAGF,yBACE,4BACA,2BACA,YACA,aACA,iBACA,kBACA,iBACA,qBACA,kBACA,qBACA,wBACA","file":"lists.css"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.modal{display:none}.modal:target{display:block;position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.25);z-index:var(--index-overlay);border:none;overscroll-behavior:contain}.modal:target>a:first-child{position:absolute;top:0;left:0;width:100%;height:100%;opacity:0;cursor:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 512 512'%3e%3cg transform='rotate(45 256 256)'%3e%3crect id='r' x='16' y='216' width='480' height='80' rx='14'/%3e%3cuse href='%23r' transform='rotate(90 256 256)'/%3e%3c/g%3e%3c/svg%3e") 8 8,pointer}.modal:target>button{display:none}@media screen and (min-width: 62em){.modal:target>button{display:block;position:absolute;z-index:var(--index-focus);top:50%;transform:translate(0, -50%);overflow:hidden;text-indent:300%;width:2rem;height:2rem}.modal:target>button.btn:not(:hover):not(:focus){background-color:#fff}.modal:target>button.modal__dock--left{right:calc(50% + 25.625rem + 1rem)}.modal:target>button.modal__dock--left:after{transform:rotate(-180deg)}.modal:target>button.modal__dock--right{left:calc(50% + 25.625rem + 1rem)}}.modal:target.modal--left button.modal__dock--left{display:none}.modal:target.modal--left button.modal__dock--right{left:calc(40rem + 2rem)}.modal:target.modal--right button.modal__dock--right{display:none}.modal:target.modal--right button.modal__dock--left{right:calc(40rem + 2rem)}.modal__outer{position:absolute;top:50%;left:50%;width:90%;max-width:51.25rem;height:fit-content;max-height:90%;overflow:visible;transform:translate(-50%, -50%)}.modal__outer>.btn:first-child{position:absolute;top:0;right:0;margin-top:-0.75rem;margin-right:-0.75rem;z-index:var(--index-focus)}.modal__outer>.btn:first-child:not(:hover):not(:focus):not(:active){background:#fff}@media screen and (min-width: 62em){.modal--left .modal__outer{left:1rem;transform:translate(0, -50%);max-width:40rem}.modal--right .modal__outer{left:auto;right:1rem;transform:translate(0, -50%);max-width:40rem}}.modal__inner{background:#fff;overscroll-behavior:contain;height:fit-content;max-height:90vh;overflow:auto}.modal__inner>*:first-child{padding:1rem}@media screen and (min-width: 36em){.modal__inner>*:first-child{padding:2rem}}/*# sourceMappingURL=modal.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../sass/components/modal.scss","../../sass/_functions/mixins.scss"],"names":[],"mappings":"AAGA,OACE,aAGF,cACE,cACA,eACA,MACA,OACA,WACA,YACA,2BACA,6BACA,YACA,4BAEA,4BAEE,kBACA,MACA,OACA,WACA,YACA,UACA,qTAGF,qBACE,aCzBA,oCDwBF,qBAII,cACA,kBACA,2BACA,QACA,6BACA,gBACA,iBACA,WACA,YAEA,iDACE,sBAGF,uCACE,mCAEA,6CACE,0BAGJ,wCACE,mCAMN,mDACE,aAGF,oDACE,wBAGF,qDACE,aAGF,oDACE,yBAKJ,cAEE,kBACA,QACA,SACA,UACA,mBACA,mBACA,eACA,iBACA,gCAEA,+BACE,kBACA,MACA,QACA,oBACA,sBACA,2BAEA,oEACE,gBC/FF,oCDmGA,2BACE,UACA,6BACA,gBAGF,4BACE,UACA,WACA,6BACA,iBAKN,cACE,gBACA,4BACA,mBACA,gBACA,cAEA,4BAEE,aC3HA,oCDyHF,4BAKI","file":"modal.css"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.nav .nav__mobile-bar{background:var(--colour-primary);color:#fff;--colour-body: #FCFCFC;--colour-heading: #FCFCFC;--colour-link: #FCFCFC;--colour-hover: #FCFCFC;--colour-border: #FCFCFC;--colour-brand: #FCFCFC;--btn-bg: #FCFCFC;--btn-text: var(--colour-primary);--btn-hover-text: var(--colour-heading);--btn-tertiary-bg: #FCFCFC;--btn-tertiary-hover-text: var(--colour-primary);display:flex;flex-direction:column;flex-wrap:nowrap;width:23.4375rem}@media screen and (min-width: 36em){.nav .nav__mobile-bar{width:100%}}.nav .nav__mobile-bar>.container{padding-top:1rem;padding-bottom:1rem;flex-shrink:0;overflow:visible}.nav{font-weight:bold}.nav__inner,.nav__menu--account{display:flex;flex-direction:column;flex-wrap:nowrap}.nav__inner>.container,.nav__menu--account>.container{padding-top:1rem;padding-bottom:0;flex-shrink:0;overflow:visible;z-index:unset}.nav__menu{padding-top:2.25rem;padding-bottom:1rem}.nav .brand{font-size:2.25rem}@media screen and (min-width: 62em){.nav .brand{font-size:3.75rem}}.nav__logo img{height:2.25rem;width:auto}@media screen and (min-width: 36em){.nav__logo img{height:3.75rem;width:auto}}.nav__search-btn,.nav__menu-btn{display:flex}.nav__search-btn label,.nav__menu-btn label{height:1.125rem;width:1.5rem;text-indent:-300%;overflow:hidden;position:relative;cursor:pointer;color:var(--colour-link)}.nav__search-btn label:hover,.nav__search-btn label:focus,.nav__menu-btn label:hover,.nav__menu-btn label:focus{color:var(--colour-hover)}.nav__search-btn label:active,.nav__menu-btn label:active{color:var(--colour-active)}.nav__search-btn label:before,.nav__search-btn label:after,.nav__menu-btn label:before,.nav__menu-btn label:after{content:"";position:absolute;width:0%;height:2px;top:calc(50% - 1px);left:0;background:currentColor;transform-origin:50% 50%;transition:transform .5s,width .5s}.nav__search-btn label{text-indent:0;overflow:visible}.nav__search-btn .icon{height:2rem;width:2rem;margin-top:-0.5rem;margin-left:-0.0625rem;transition:opacity .5s;color:inherit}.nav__search-btn .icon__outline{stroke-width:2px;stroke:currentColor}.nav__menu-btn{display:flex}.nav__menu-btn label{border-top:2px solid currentColor;border-bottom:2px solid currentColor}.nav__menu-btn label:before,.nav__menu-btn label:after{width:100%}.nav__account-btn label{font-size:1.125rem;text-indent:0;overflow:visible;color:var(--colour-body);height:3rem;line-height:3rem;display:block;border-top:1px solid var(--colour-border);border-bottom:1px solid var(--colour-border)}.nav__account-btn .icon{height:1.75rem;width:1.75rem;margin-top:-0.5rem;margin-right:0.5rem;transition:opacity .5s;color:inherit}.nav__account-btn .icon__outline{stroke-width:2px;stroke:currentColor}.nav__menu>ul{margin-bottom:0}.nav__menu>ul>li>a{font-size:1.125rem;line-height:2rem;display:inline-block;position:relative;text-decoration:none}.nav__menu>ul>li>a.current{border-left:0.375rem solid var(--colour-info);margin-left:-1.25rem;padding-left:0.875rem}@media screen and (min-width: 62em){.nav__menu--search{display:none}#showSearch:checked~.nav__inner>.nav__menu--search{order:2;position:absolute;top:100%;left:0;width:100%;background:rgba(0,0,0,.6);height:calc(100vh - 5rem);display:block}}.services{line-height:2rem}.services li{display:flex;justify-content:space-between}.services .service--active:before{content:"";height:1em;width:1em;display:inline-block;background:var(--colour-secondary);margin-right:.5rem;margin-bottom:-0.1em;border-radius:50%}.credits{border:2px solid var(--colour-primary);padding:1rem;margin-bottom:2rem;border-radius:0.625rem}.credits .h5,.credits ul{padding-inline:1rem}.credits>*:last-child{margin-bottom:0 !important}.nav[class*=bg-] .nav__inner{background-color:rgba(0,0,0,0)}.nav__menu--secondary{flex-grow:1;font-weight:bold}.nav__menu--secondary .nav__section-link{pointer-events:none;font-weight:bold;color:var(--colour-link);font-size:1.125rem}.nav__menu--secondary>.container>ul>li{padding-block:0.375rem}.nav__menu--secondary>.container>ul>li:not(:last-child){border-bottom:1px solid var(--colour-border)}.nav__menu--secondary>.container>ul>li a{display:inline-block;font-size:1.125rem;line-height:2.25rem;text-decoration:none;font-weight:bold}.nav__menu--secondary>.container>ul>li ul{padding:0}.nav__menu--secondary>.container>ul>li ul a{font-weight:normal}.nav__menu--secondary>.container>ul>li ul a .icon{display:none}.nav{position:sticky;top:0;left:0;width:100%;z-index:var(--index-menu)}.nav.is-stuck{-webkit-box-shadow:0 4px 20px -10px rgba(51,51,51,.25);box-shadow:0 4px 20px -10px rgba(51,51,51,.25)}nav+main>*:first-child{padding-top:2rem}.nav__menu,.nav__btn,.nav__menu--secondary{display:none}.nav__inner,.nav__menu--account{position:absolute;top:0;left:100%;background:var(--body-bg);z-index:2;width:100%;overscroll-behavior:contain}@media screen and (min-width: 36em){.nav__inner,.nav__menu--account{width:23.4375rem}}.nav__menu--account{z-index:2;height:100vh}#showMenu:checked~.nav__inner,#showAccount:checked~.nav__menu--account{height:100vh;overflow:visible;overflow-x:auto;left:0}@media screen and (min-width: 36em){#showMenu:checked~.nav__inner,#showAccount:checked~.nav__menu--account{left:calc(100% - 23.4375rem)}}@media screen and (min-width: 62em){#showAccount~.nav__menu--account{display:none}#showAccount:checked~.nav__menu--account{left:0;width:100%;height:auto;display:block;top:6rem;border-top:0.3125rem solid var(--colour-primary);border-bottom:1px solid var(--colour-border-light);-webkit-box-shadow:0px 3px 6px 0px rgba(0,0,0,.16);-moz-box-shadow:0px 3px 6px 0px rgba(0,0,0,.16);box-shadow:0px 3px 6px 0px rgba(0,0,0,.16)}}#showMenu:checked~div .nav__menu,#showMenu:checked~div .nav__btn,#showMenu:checked~div .nav__menu--secondary,#showMenu:not(:checked)~#showSearch:checked~div .nav__menu--search{display:block}#showMenu:checked~div .nav__menu-btn label,#showSearch:checked~div .nav__search-btn label{border:0}#showMenu:checked~div .nav__menu-btn label .icon,#showSearch:checked~div .nav__search-btn label .icon{opacity:0}#showMenu:checked~div .nav__menu-btn label:before,#showSearch:checked~div .nav__search-btn label:before{width:100%;transform:rotate(45deg)}#showMenu:checked~div .nav__menu-btn label:after,#showSearch:checked~div .nav__search-btn label:after{width:100%;transform:rotate(-45deg)}@media screen and (min-width: 36em){#showMenu:checked~.nav__bg{content:" ";position:absolute;top:0;left:0;width:100vw;height:100vh;background:rgba(0,0,0,.5);z-index:1}}@media screen and (min-width: 62em){.nav__bg{display:none}}@media screen and (min-width: 62em){.nav .nav__mobile-bar{display:none}.nav__logo{height:4rem}#showMenu:checked~.nav__inner,.nav__inner{overflow:visible;position:static;width:100%}.nav .nav__menu{display:flex;padding-bottom:0}.nav__btn,.nav__menu--secondary{display:flex}.nav .nav__inner>.container{padding-bottom:1rem}.nav__search-btn,.nav__btn{order:2;margin-left:1rem}.nav__search-btn .btn,.nav__btn .btn{margin-bottom:0}.nav__menu{padding-top:0}.nav__menu>.list-unstyled{margin-left:-1.5rem !important;margin-right:-1.5rem !important;width:calc(100% + 3rem);margin-bottom:0;padding-top:0;padding-left:1.5rem;padding-right:1.5rem}.nav__menu>.list-unstyled>li{display:inline-block;padding-left:1rem;padding-right:1rem}.nav__menu>.list-unstyled>li:not(:last-child){border-right:1px solid var(--colour-border)}.nav__menu>.list-unstyled>li>a{line-height:1.75rem}.nav__menu>.list-unstyled>li>a.current{border-left:none;padding-left:0;border-bottom:0.1875rem solid var(--colour-info)}.nav__account-btn{max-width:fit-content !important}.nav__account-btn label{border:none !important;padding-top:.5rem;position:relative;padding-right:2.5rem}.nav__account-btn label:after{content:"";position:absolute;top:calc(50% + .5rem);right:0;width:1.5em;height:1.5em;background:currentColor;mask-image:var(--icon-arrow);mask-size:50%;mask-repeat:no-repeat;mask-position:50% 50%;-webkit-mask-image:var(--icon-arrow);-webkit-mask-size:50%;-webkit-mask-repeat:no-repeat;-webkit-mask-position:50% 50%;transition:transform .2s ease-in-out;transform:rotate(90deg) translate(-50%, 0)}.nav .nav__menu--secondary>.container>.list-unstyled{font-size:0.9375rem;padding-top:0}}@media screen and (min-width: 62em){.nav__menu--secondary{background-color:var(--colour-primary);--colour-body: #FCFCFC;--colour-heading: #FCFCFC;--colour-link: #FCFCFC;--colour-hover: #FCFCFC;--colour-border: #FCFCFC;--colour-brand: #FCFCFC;--btn-bg: #FCFCFC;--btn-text: var(--colour-primary);--btn-hover-text: var(--colour-heading);--btn-tertiary-bg: #FCFCFC;--btn-tertiary-hover-text: var(--colour-primary)}.nav__menu--secondary .nav__section-link{pointer-events:all}.nav__menu--secondary>.container{padding-bottom:0}.nav__menu--secondary>.container>.list-unstyled{margin-left:-1rem !important;margin-right:-1rem !important;width:calc(100% + 2rem);margin-bottom:0}.nav__menu--secondary>.container>.list-unstyled>li{display:inline-block;padding-left:1rem;padding-right:1rem;border:none !important;padding-block:0;position:relative}.nav__menu--secondary>.container>.list-unstyled>li a,.nav__menu--secondary>.container>.list-unstyled>li .nav__section-link{display:block;line-height:2.25rem;padding-block:.5rem;cursor:pointer}.nav__menu--secondary>.container>.list-unstyled>li ul{display:none}.nav__menu--secondary>.container>.list-unstyled>li:hover>.nav__section-link,.nav__menu--secondary>.container>.list-unstyled>li:focus>.nav__section-link,.nav__menu--secondary>.container>.list-unstyled>li:focus-within>.nav__section-link{color:var(--colour-selected)}.nav__menu--secondary>.container>.list-unstyled>li:hover ul,.nav__menu--secondary>.container>.list-unstyled>li:focus ul,.nav__menu--secondary>.container>.list-unstyled>li:focus-within ul{display:block;background:#fff;position:absolute;top:100%;left:0;padding-top:1rem;-webkit-box-shadow:0 4px 20px -10px rgba(51,51,51,.25);box-shadow:0 4px 20px -10px rgba(51,51,51,.25);--colour-body: var(--colour-body-theme);--colour-heading: var(--colour-primary);--colour-link: var(--colour-link-theme);--colour-hover: var(--colour-hover-theme);--colour-active: var(--colour-active-theme);--colour-border: var(--colour-border-theme);--colour-brand: var(--colour-primary);--btn-bg: var(--colour-warning);--btn-text: var(--colour-primary);--btn-hover-text: var(--colour-primary);--btn-tertiary-bg: var(--colour-primary);--btn-tertiary-hover-text: white;--colour-admin: var(--colour-admin-theme)}.nav__menu--secondary>.container>.list-unstyled>li:hover ul .text-primary,.nav__menu--secondary>.container>.list-unstyled>li:focus ul .text-primary,.nav__menu--secondary>.container>.list-unstyled>li:focus-within ul .text-primary{color:var(--colour-primary) !important}.nav__menu--secondary>.container>.list-unstyled>li:hover ul li,.nav__menu--secondary>.container>.list-unstyled>li:focus ul li,.nav__menu--secondary>.container>.list-unstyled>li:focus-within ul li{padding-inline:1.5rem}.nav__menu--secondary>.container>.list-unstyled>li:hover ul li:last-child,.nav__menu--secondary>.container>.list-unstyled>li:focus ul li:last-child,.nav__menu--secondary>.container>.list-unstyled>li:focus-within ul li:last-child{padding-bottom:1rem}.nav__menu--secondary>.container>.list-unstyled>li:hover ul li.nav__download,.nav__menu--secondary>.container>.list-unstyled>li:focus ul li.nav__download,.nav__menu--secondary>.container>.list-unstyled>li:focus-within ul li.nav__download{background:var(--colour-admin);padding-top:1rem}.nav__menu--secondary>.container>.list-unstyled>li:hover ul li.nav__download+li.nav__download,.nav__menu--secondary>.container>.list-unstyled>li:focus ul li.nav__download+li.nav__download,.nav__menu--secondary>.container>.list-unstyled>li:focus-within ul li.nav__download+li.nav__download{padding-top:0}.nav__menu--secondary>.container>.list-unstyled>li:hover ul a,.nav__menu--secondary>.container>.list-unstyled>li:focus ul a,.nav__menu--secondary>.container>.list-unstyled>li:focus-within ul a{white-space:nowrap;padding:0;line-height:3rem}.nav__menu--secondary>.container>.list-unstyled>li:hover ul a .icon,.nav__menu--secondary>.container>.list-unstyled>li:focus ul a .icon,.nav__menu--secondary>.container>.list-unstyled>li:focus-within ul a .icon{display:inline-block;font-size:1.5em;padding:0;margin:-0.15em .25em 0 0}.nav__menu--secondary>.container>.logout-button{display:none}}@media screen and (min-width: 62em){.nav__menu--account>.container:first-child{display:none}.nav__menu--account>.container:not(:first-child){display:flex;flex-wrap:wrap;gap:2rem;align-items:start}.nav__menu--account>.container:not(:first-child):before{display:none}.nav__menu--account>.container:not(:first-child)>.row,.nav__menu--account>.container:not(:first-child) .nav__featured-link,.nav__menu--account>.container:not(:first-child) .credits{flex-basis:22%;flex-grow:1;margin:0}.nav__menu--account>.container:not(:first-child)>.row>.col:first-child,.nav__menu--account>.container:not(:first-child) .nav__featured-link>.row>.col:first-child{max-width:100% !important;width:100%;flex-shrink:0;min-width:100%;margin-bottom:1rem}.nav__menu--account>.container:not(:first-child) .logout-button{min-width:100%}}@media screen and (min-width: 62em){.nav .list-unstyled>li details.nav__mega-menu{position:static;height:4.5rem;margin-bottom:-5rem}}.nav .list-unstyled>li details.nav__mega-menu .inner{z-index:5}.nav .list-unstyled>li details.nav__mega-menu .inner [class*=bg-]{--bs-bg-opacity: 0}@media screen and (min-width: 62em){.nav .list-unstyled>li details.nav__mega-menu .inner [class*=bg-]{--bs-bg-opacity: 1}}@media screen and (min-width: 62em){.nav .list-unstyled>li details.nav__mega-menu .inner{--bs-bg-opacity: 1;position:absolute;top:100%;left:50%;width:100vw !important;max-width:100vw !important;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);background:rgba(0,0,0,.6);height:calc(100vh - 8rem);pointer-events:none;padding-top:0}.nav .list-unstyled>li details.nav__mega-menu .inner .container{padding:0 1.5rem 1rem 1.5rem !important;max-width:90rem !important;text-align:left;pointer-events:all;display:flex}.nav .list-unstyled>li details.nav__mega-menu .inner .container>div{padding:2.25rem}}.nav--inline-search .nav__menu form{position:relative}.nav--inline-search .nav__menu form .form-control__wrapper .form-control{padding-right:3rem}.nav--inline-search .nav__menu form button{position:absolute;bottom:0;right:0;margin:0;z-index:var(--index-focus);border-color:rgba(0,0,0,0);background:rgba(0,0,0,0);padding:.85rem 0rem}.nav--inline-search .nav__menu form button .icon{stroke:currentColor}@media screen and (min-width: 62em){.nav--inline-search .nav__menu>.list-unstyled{text-align:left;margin-right:0 !important}.nav--inline-search .nav__menu form{min-width:21.875rem;position:relative}.nav--inline-search .nav__menu form .form-control__wrapper{margin-bottom:0;display:flex;align-items:center}.nav--inline-search .nav__menu form .form-control__wrapper label{white-space:nowrap;padding-right:1rem}.nav--inline-search .nav__menu form .form-control__wrapper .form-control{padding:0.4375rem 3rem 0.4375rem 1rem}.nav--inline-search .nav__menu form button{padding:0.5rem 0rem}}@media screen and (min-width: 62em){.nav--admin .nav__logo{height:3rem}.nav--admin .nav__logo .brand{font-size:3rem}}.nav--just-account .nav__menu,.nav--just-account .nav__account-btn{display:none !important}@media screen and (min-width: 62em){.nav--just-account .nav__menu,.nav--just-account .nav__account-btn{display:block !important}}.nav--just-account #showMenu:checked~.nav__menu--account{height:100vh;overflow:visible;overflow-x:auto;left:0;pointer-events:none;background:rgba(0,0,0,0)}@media screen and (min-width: 36em){.nav--just-account #showMenu:checked~.nav__menu--account{width:23.4375rem;left:calc(100% - 23.4375rem)}}.nav--just-account #showMenu:checked~.nav__menu--account>.container:first-child{opacity:0}.nav--just-account #showMenu:checked~.nav__menu--account>.container:not(:first-child){pointer-events:all}/*# sourceMappingURL=nav.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../sass/components/nav.scss","../../sass/_functions/mixins.scss"],"names":[],"mappings":"AAGA,sBAEE,iCACA,WCwJA,uBACA,0BACA,uBACA,wBACA,yBACA,wBAEA,kBACA,kCACA,wCACA,2BACA,iDD5JA,aACA,sBACA,iBACA,iBCVE,oCDHJ,sBAgBI,YAGF,iCAEE,iBACA,oBACA,cACA,iBAMJ,KAGE,iBAEA,gCAGE,aACA,sBACA,iBAEA,sDAEE,iBACA,iBACA,cACA,iBACA,cAIJ,WACE,oBACA,oBAGF,YACE,kBCvDA,oCDsDF,YAII,mBAKN,eACE,eACA,WCjEE,oCD+DJ,eAKI,eACA,YAIJ,gCAGE,aAEA,4CACE,gBACA,aACA,kBACA,gBACA,kBACA,eAEA,yBAEA,gHAGE,0BAGF,0DAEE,2BAGF,kHAEE,WACA,kBACA,SACA,WACA,oBACA,OACA,wBACA,yBACA,mCAOJ,uBACE,cACA,iBAEF,uBACE,YACA,WACA,mBACA,uBACA,uBACA,cAEA,gCAEE,iBACA,oBAKN,eACE,aAEA,qBAEE,kCACA,qCAEA,uDAEE,WAOJ,wBACE,mBACA,cACA,iBACA,yBACA,YACA,iBACA,cACA,0CACA,6CAEF,wBACE,eACA,cACA,mBACA,oBACA,uBACA,cAEA,iCAEE,iBACA,oBAKN,cACE,gBAEA,mBACE,mBACA,iBACA,qBACA,kBACA,qBAEA,2BACE,8CACA,qBACA,sBCjMF,oCD4MF,mBACE,aAGF,mDACE,QACA,kBACA,SACA,OACA,WAEA,0BACA,0BACA,eAOJ,UACE,iBAEA,aACE,aACA,8BAIA,kCACE,WACA,WACA,UACA,qBACA,mCACA,mBACA,qBACA,kBAKN,SACE,uCACA,aACA,mBACA,uBAEA,yBAEE,oBAIF,sBACE,2BAQF,6BACE,+BAkBJ,sBACE,YAEA,iBAEA,yCACE,oBACA,iBACA,yBACA,mBAGF,uCAOE,uBALA,wDAEE,6CAKF,yCACE,qBACA,mBACA,oBACA,qBACA,iBAGF,0CACE,UAEA,4CACE,mBAEA,kDACE,aAuCV,KAEE,gBACA,MACA,OACA,WACA,0BAEA,cAEE,uDACA,+CAIJ,uBACE,iBAOF,2CAIE,aAGF,gCAEE,kBACA,MACA,UACA,0BACA,UACA,WACA,4BC/YE,oCDuYJ,gCAYI,kBAIJ,oBACE,UACA,aAGF,uEAGE,aACA,iBACA,gBACA,OClaE,oCD4ZJ,uEAUI,8BCtaA,oCD4aF,iCAEE,aAGF,yCAEE,OACA,WACA,YACA,cACA,SACA,iDACA,mDACA,mDACA,gDACA,4CAIJ,gLAIE,cAKF,0FAGE,SAEA,sGACE,UAEF,wGACE,WACA,wBAEF,sGAEE,WACA,yBCxdA,oCD8dF,2BACI,YACA,kBACA,MACA,OACA,YACA,aACA,0BACA,WCteF,oCD6eF,SACI,cC9eF,oCDufF,sBAEE,aAIF,WACE,YAGF,0CAEE,iBACA,gBACA,WAGF,gBACE,aACA,iBAGF,gCAEE,aAKA,4BACE,oBAKJ,2BAEE,QACA,iBAEA,qCACE,gBAGJ,WACE,cAEF,0BACE,+BACA,gCACA,wBACA,gBAEA,cACA,oBACA,qBAEA,6BACE,qBACA,kBACA,mBAEA,8CAEE,4CAEF,+BACE,oBAEF,uCACE,iBACA,eACA,iDAKN,kBACE,iCAEA,wBAEE,uBACA,kBACA,kBACA,qBAEA,8BACE,WACA,kBACA,sBACA,QACA,YACA,aACA,wBACA,6BACA,cACA,sBACA,sBACA,qCACA,sBACA,8BACA,8BACA,qCACA,2CAKN,qDACE,oBACA,eCtmBA,oCDknBF,sBACE,uCC3dF,uBACA,0BACA,uBACA,wBACA,yBACA,wBAEA,kBACA,kCACA,wCACA,2BACA,iDDmdE,yCACE,mBAIJ,iCACE,iBAGF,gDACE,6BACA,8BACA,wBACA,gBAEA,mDACE,qBACA,kBACA,mBACA,uBACA,gBACA,kBAEA,2HAEE,cACA,oBACA,oBACA,eAGF,sDACE,aAOA,2OAEE,6BAGF,2LACE,cACA,gBACA,kBACA,SACA,OACA,iBAEA,uDACA,+CCziBR,wCACA,wCACA,wCACA,0CACA,4CAEA,4CACA,sCAEA,gCACA,kCACA,wCACA,yCACA,iCDgiBQ,0CC9hBR,qOACE,uCD+hBM,oMAEE,sBAGF,qOAEE,oBAGF,8OACE,+BACA,iBAEA,iSACE,cAIJ,iMACE,mBACA,UACA,iBAEA,mNACE,qBACA,gBACA,UACA,yBAQZ,gDACE,cCttBA,oCDmuBA,2CAEE,aAGF,iDAME,aACA,eACA,SAEF,kBARE,wDACE,aASF,qLAIE,eACA,YACA,SAIF,kKAEE,0BACA,WACA,cACA,eACA,mBAGF,gEACE,gBCxwBJ,oCDixBJ,8CAII,gBAEA,cACA,qBAGF,qDAEE,UAEA,kEAEE,mBCjyBF,oCD+xBA,kEAII,oBCnyBJ,oCD2xBF,qDAeI,mBACA,kBACA,SACA,SACA,uBACA,2BACA,mCACA,+BACA,2BAEA,0BACA,0BAEA,oBACA,cAEA,gEACE,wCACA,2BACA,gBACA,mBACA,aAEA,oEACE,iBAWR,oCACE,kBACA,yEACE,mBAGF,2CACE,kBACA,SACA,QACA,SACA,2BACA,2BACA,yBACA,oBAEA,iDACE,oBC91BJ,oCDo2BA,8CACE,gBACA,0BAGF,oCACE,oBACA,kBAEA,2DACE,gBACA,aACA,mBAEA,iEACE,mBACA,mBAGF,yEACE,sCAIJ,2CACE,qBC73BJ,oCDu4BA,uBACE,YAEA,8BACE,gBAWN,mEAEE,wBCx5BA,oCD65BA,mEAEE,0BAIJ,yDACE,aACA,iBACA,gBACA,OACA,oBACA,yBCz6BA,oCDm6BF,yDAUI,iBACA,8BAGF,gFACE,UAEF,sFACE","file":"nav.css"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.admin-panel{--panel-gutter: 1rem;--panel-tab-colour: #fafafa;background:var(--body-bg);padding:0 var(--panel-gutter) 0 var(--panel-gutter);border:1px solid var(--colour-border-light);border-top:3px solid var(--colour-secondary);margin-bottom:2rem}.admin-panel.bg-secondary{background-color:rgba(180,230,165,.3) !important}@media screen and (prefers-color-scheme: dark){.admin-panel{--panel-tab-colour: transparent}}@media screen and (min-width: 62em){.admin-panel{--panel-gutter: 1.5rem}}.admin-panel:empty{display:none}.admin-panel>*:not(.note-feed):first-child{margin-top:var(--panel-gutter)}.admin-panel>*:last-child:not(details){margin-bottom:var(--panel-gutter)}.admin-panel>:is(h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6):first-child{border-bottom:2px solid var(--colour-border-light);font-size:var(--fs-4);line-height:1;letter-spacing:1;padding:var(--panel-gutter) var(--panel-gutter) var(--panel-gutter) var(--panel-gutter);margin:0 calc(var(--panel-gutter)*-1) var(--panel-gutter) calc(var(--panel-gutter)*-1);display:block}.admin-panel>.table__wrapper,.admin-panel>.note-feed>.table__wrapper,.admin-panel>.tabs>details>.table__wrapper{margin:0 calc(var(--panel-gutter)*-1) var(--panel-gutter) calc(var(--panel-gutter)*-1);padding:0 var(--panel-gutter) 0 var(--panel-gutter);min-width:calc(100% + var(--panel-gutter) + var(--panel-gutter))}.admin-panel>.table__wrapper table,.admin-panel>.note-feed>.table__wrapper table,.admin-panel>.tabs>details>.table__wrapper table{margin:0 calc(var(--panel-gutter)*-1) var(--panel-gutter) calc(var(--panel-gutter)*-1);min-width:calc(100% + var(--panel-gutter) + var(--panel-gutter));padding-right:0}.admin-panel>.table__wrapper tr :is(th,td),.admin-panel>.note-feed>.table__wrapper tr :is(th,td),.admin-panel>.tabs>details>.table__wrapper tr :is(th,td){padding-left:var(--panel-gutter);padding-right:var(--panel-gutter)}.admin-panel>.table__wrapper:first-child,.admin-panel>.note-feed>.table__wrapper:first-child,.admin-panel>.tabs>details>.table__wrapper:first-child{margin-top:0}.admin-panel>.table__wrapper:first-child thead tr:first-child,.admin-panel>.note-feed>.table__wrapper:first-child thead tr:first-child,.admin-panel>.tabs>details>.table__wrapper:first-child thead tr:first-child{border-top:none}.admin-panel>.table__wrapper:last-child,.admin-panel>.note-feed>.table__wrapper:last-child,.admin-panel>.tabs>details>.table__wrapper:last-child{margin-bottom:0}.admin-panel>.table__wrapper:last-child tbody tr:last-child,.admin-panel>.note-feed>.table__wrapper:last-child tbody tr:last-child,.admin-panel>.tabs>details>.table__wrapper:last-child tbody tr:last-child{border-bottom:none}.admin-panel :is(h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6,.admin-panel__links,.tabs__links)+:is(.table__wrapper,table,.note-feed){margin-top:calc(var(--panel-gutter)*-1)}.admin-panel :is(h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6,.admin-panel__links,.tabs__links)+:is(.table__wrapper,table,.note-feed) tr:first-child{border-top:none}[class*=col] .admin-panel:first-child:last-child{min-height:calc(100% - 2rem)}.admin-panel .admin-panel__links{margin-top:-3px !important;margin-left:calc(var(--panel-gutter)*-1);margin-right:calc(var(--panel-gutter)*-1);display:flex;flex-direction:column;background-color:var(--body-bg);border-bottom:2px solid var(--colour-border-light);margin-bottom:var(--panel-gutter)}@media screen and (min-width: 36em){.admin-panel .admin-panel__links{flex-direction:row;border-top:1px solid var(--colour-border-light)}}.admin-panel .admin-panel__links :is(a,label){padding:var(--panel-gutter);margin:0;width:100%;background:var(--panel-tab-colour);border-top:1px solid var(--colour-border-light);border-left:3px solid var(--panel-tab-border, #fafafa)}.admin-panel .admin-panel__links :is(a,label):before{display:none}@media screen and (min-width: 36em){.admin-panel .admin-panel__links :is(a,label){margin-right:0 !important;border-top:3px solid var(--panel-tab-border, #fafafa)}.admin-panel .admin-panel__links :is(a,label):first-child{border-left:none !important}.admin-panel .admin-panel__links :is(a,label):not(:first-child){border-left:1px solid var(--colour-border-light) !important}}.admin-panel .admin-panel__links .current{--is-current: 1;--panel-tab-colour: var(--body-bg);--panel-tab-border: var(--colour-secondary);pointer-events:none}/*# sourceMappingURL=panel.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../sass/components/panel.scss","../../sass/_functions/mixins.scss"],"names":[],"mappings":"AAEA,aACE,qBACA,4BACA,0BAiBA,oDACA,4CACA,6CACA,mBAlBA,0BAEE,iDAGF,+CAVF,aAYI,iCCRA,oCDJJ,aAiBI,wBAQF,mBACE,aAGF,2CACE,+BAGF,uCACE,kCAGF,wEACE,mDACA,sBACA,cACA,iBACA,wFACA,uFACA,cAGF,gHAIE,uFACA,oDACA,iEAEA,kIAEE,uFACA,iEACA,gBAKA,0JACE,iCACA,kCAIJ,oJACE,aAEA,mNAEE,gBAIJ,iJACE,gBAEA,6MAEE,mBAMN,mIACE,wCAEA,kJAEE,gBAKN,iDAEE,6BAGF,iCAEE,2BACA,yCACA,0CACA,aACA,sBACA,gCACA,mDACA,kCC9GE,oCDqGJ,iCAaI,mBACA,iDAGF,8CACE,4BACA,SACA,WACA,mCACA,gDACA,uDAEA,qDACE,aC/HF,oCDsHF,8CAcI,0BAWA,sDATA,0DACE,4BAGF,gEAEE,6DAON,0CAEE,gBACA,mCACA,4CACA","file":"panel.css"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.property-searchbar fieldset{position:relative}@media screen and (min-width: 62em){.property-searchbar fieldset{position:relative;padding-right:1.5rem}.property-searchbar fieldset:after{content:"";position:absolute;top:0;right:.5rem;display:block;height:100%;width:1px;background-color:var(--colour-muted);opacity:.25}}.property-searchbar .form-control__wrapper{margin-bottom:1rem}@media screen and (min-width: 62em){.property-searchbar .form-control__wrapper{margin-bottom:0}}.property-searchbar .form-label,.property-searchbar label{font-size:0.875rem;text-transform:uppercase}@media screen and (min-width: 62em){.property-searchbar .row .row .form-label{display:none}.property-searchbar .form-control,.property-searchbar .form-select{padding:.5rem 1.5rem .5rem .5rem}.property-searchbar .form-select{background-position:right .5rem center}}.property-searchbar .input--locations{padding-right:5.5rem}.property-searchbar .select--miles{position:absolute;bottom:0rem;right:.5rem;width:5rem}@media screen and (min-width: 62em){.property-searchbar .select--miles{right:1.5rem}}.property-searchbar .select--miles label{display:none}.property-searchbar .select--miles select{background-color:rgba(0,0,0,0);border-color:rgba(0,0,0,0)}@media screen and (min-width: 62em){.property-searchbar .property-searchbar__btn{align-items:flex-end}}.property-searchbar button{margin-top:1rem;margin-bottom:1rem}@media screen and (min-width: 62em){.property-searchbar button{margin:0;padding-left:3.5rem;padding-right:3.5rem}}.property-searchbar--hero .property-searchbar{--colour-body: var(--colour-body-theme);--colour-heading: var(--colour-primary);--colour-link: var(--colour-link-theme);--colour-hover: var(--colour-hover-theme);--colour-active: var(--colour-active-theme);--colour-border: var(--colour-border-theme);--colour-brand: var(--colour-primary);--btn-bg: var(--colour-warning);--btn-text: var(--colour-primary);--btn-hover-text: var(--colour-primary);--btn-tertiary-bg: var(--colour-primary);--btn-tertiary-hover-text: white;padding:1rem;background-color:#fff;width:100%;border-radius:0.625rem;-webkit-box-shadow:0 2px 4px 0 rgba(0,0,0,.24);box-shadow:0 2px 4px 0 rgba(0,0,0,.24);position:relative}.property-searchbar--hero .property-searchbar .text-primary{color:var(--colour-primary) !important}@media screen and (min-width: 62em){.property-searchbar--hero .property-searchbar{border-radius:3rem;padding:1.5rem 2.5rem}.property-searchbar--hero .property-searchbar .form-label,.property-searchbar--hero .property-searchbar label{margin-bottom:0}.property-searchbar--hero .property-searchbar .form-control,.property-searchbar--hero .property-searchbar .form-select{margin-left:-0.5rem;border:none;padding-top:.25rem;padding-bottom:.25rem}.property-searchbar--hero .property-searchbar .form-select{background-position:right 0rem center;padding-right:1rem}.property-searchbar--hero .property-searchbar .property-searchbar__btn{align-items:center}}/*# sourceMappingURL=property-searchbar.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../sass/components/property-searchbar.scss","../../sass/_functions/mixins.scss"],"names":[],"mappings":"AAKE,6BACE,sDADF,6BAII,kBACA,qBAEA,mCACE,WACA,kBACA,MACA,YACA,cACA,YACA,UACA,qCACA,aAKN,2CACE,mBCrBA,oCDoBF,2CAII,iBAIJ,0DAEE,mBACA,yBC/BA,oCDqCE,0CACE,aAIJ,mEAEE,iCAGF,iCACE,wCAIJ,sCACE,qBAGF,mCACE,kBACA,YACA,YACA,WC5DA,oCDwDF,mCAOI,cAGF,yCACE,aAGF,0CACE,+BACA,2BCxEF,oCD6EA,6CACE,sBAIJ,2BACE,gBACA,mBCpFA,oCDkFF,2BAKI,SACA,oBACA,sBAON,8CCkCE,wCACA,wCACA,wCACA,0CACA,4CAEA,4CACA,sCAEA,gCACA,kCACA,wCACA,yCACA,iCD3CA,aACA,sBACA,WACA,uBACA,+CACA,uCACA,kBCuCA,4DACE,uCAlJA,oCDgGJ,8CAcI,mBACA,sBAEA,8GAEE,gBAGF,uHAEE,oBACA,YACA,mBACA,sBAGF,2DACE,sCACA,mBAGF,uEACE","file":"property-searchbar.css"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.snapshot>.row{padding-bottom:1rem}.snapshot>.row>.col{margin-bottom:1rem;min-width:9.375rem;position:relative}@media screen and (min-width: 36em){.snapshot>.row>.col:nth-child(8)~.col{max-width:25%}}@media screen and (min-width: 62em){.snapshot>.row>.col:nth-child(8)~.col{max-width:12.5%}}.snapshot__item{position:relative;display:flex;flex-direction:column;justify-content:space-between;height:100%;padding:1rem}.snapshot__item:not([class*=bg-]){border:1px solid var(--colour-border)}.snapshot a{position:absolute;top:0;left:0;height:100%;width:100%;opacity:0;z-index:1}.snapshot a:hover+.snapshot__item{opacity:.8}.snapshot__title{padding-bottom:1rem}.snapshot__title:after{content:":"}.snapshot .stat{text-decoration:none;margin-bottom:0}/*# sourceMappingURL=snapshot.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../sass/components/snapshot.scss","../../sass/_functions/mixins.scss"],"names":[],"mappings":"AAIE,eAEE,oBAIF,oBAEE,mBACA,mBACA,kBCRA,oCDYA,sCACE,eCbF,oCDkBA,sCACE,iBAIJ,gBAEE,kBACA,aACA,sBACA,8BACA,YACA,aAEA,kCACE,sCAKJ,YACE,kBACA,MACA,OACA,YACA,WACA,UACA,UAEA,kCACE,WAIJ,iBACE,oBAEA,uBACE,YAIJ,gBACE,qBACA","file":"snapshot.css"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.stepper{background:#f0f0f0;display:flex;flex-wrap:wrap;margin-bottom:2rem;border:1px solid var(--body-bg);overflow:hidden}@media screen and (min-width: 62em){.stepper{flex-wrap:nowrap;overflow-x:auto}}.stepper ol{margin:0;z-index:1;background:var(--body-bg);counter-reset:section;width:100%;overflow:auto}@media screen and (min-width: 36em){.stepper ol{display:flex;flex-grow:1;padding-right:calc(2rem + 1px);margin-top:-1px;margin-bottom:-1px;margin-right:calc(-2rem - 2px);clip-path:polygon(0 0, calc(100% - 2rem) 0, 100% 50%, calc(100% - 2rem) 100%, 0 100%)}}@media screen and (min-width: 62em){.stepper ol{overflow:initial}}.stepper ol li{width:100%;max-width:100%;background:var(--body-bg);padding:1px}@media screen and (min-width: 36em){.stepper ol li:first-child a{padding-left:1rem;clip-path:polygon(0 0, calc(100% - 2rem) 0, 100% 50%, calc(100% - 2rem) 100%, 0 100%)}}@media screen and (min-width: 62em){.stepper ol li:first-child a{padding-left:2rem}}.stepper ol li a{display:block;padding:1rem;text-decoration:none;position:relative;background:var(--colour-muted);line-height:1;position:relative;color:var(--colour-primary)}@media screen and (min-width: 36em){.stepper ol li a{margin-right:-2rem;padding:2rem 3rem 2rem 3rem;clip-path:polygon(0 0, calc(100% - 2rem) 0, 100% 50%, calc(100% - 2rem) 100%, 0 100%, 2rem 50%);display:flex;height:100%;vertical-align:baseline;justify-content:center;align-items:center}}.stepper ol li a span{position:relative;display:inline;padding-left:2.25rem}.stepper ol li a span:before{counter-increment:section;content:counter(section);display:block;position:absolute;top:50%;left:0;transform:translate(0, -50%);margin-right:.5rem;font-size:.75em;border-radius:50%;border:2px solid currentColor;height:1.5rem;line-height:1.3rem;width:1.5rem;font-family:var(--font-heading);text-align:center}.stepper ol li a.bg-warning span:before,.stepper ol li a.bg-danger span:before{content:"!"}.stepper ol li a.bg-success span:before{content:"✓";text-indent:-0.1em}.stepper ol li a.current{background:var(--colour-primary);color:#fff;pointer-events:none}.stepper ol li a:not([href]){pointer-events:none}.stepper ol li a[href]:hover{opacity:.6}.stepper ol li a[href]:active{opacity:.8}.stepper>span{width:100%;display:flex;padding:1rem;flex-shrink:0;margin:0;position:relative;z-index:0;align-items:center}.stepper>span.stepper__end{display:none}@media screen and (min-width: 62em){.stepper>span{width:max-content;padding:2rem 2rem}.stepper>span.stepper__end{padding-left:3.5rem;display:flex}}/*# sourceMappingURL=stepper.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../sass/components/stepper.scss","../../sass/_functions/mixins.scss"],"names":[],"mappings":"CAEA,SACE,mBACA,aACA,eACA,mBACA,gCACA,gBCFE,oCDJJ,SAUI,iBACA,iBAGF,YACE,SACA,UACA,0BACA,sBACA,WACA,cChBA,oCDUF,YAUI,aACA,YACA,+BACA,gBACA,mBACA,+BACA,uFC1BF,oCDUF,YAoBI,kBAGF,eACE,WACA,eACA,0BACA,YCrCF,oCDwCI,6BACE,kBACA,uFC1CN,oCD+CI,6BACE,mBAIJ,iBACE,cACA,aACA,qBACA,kBACA,+BACA,cACA,kBACA,4BC5DJ,oCDoDE,iBAYI,mBACA,4BACA,gGACA,aACA,YACA,wBACA,uBACA,oBAGF,sBACE,kBACA,eACA,qBAEA,6BACE,0BACA,yBACA,cACA,kBACA,QACA,OACA,6BACA,mBACA,gBACA,kBACA,8BACA,cACA,mBACA,aACA,gCACA,kBAIJ,+EAEE,YAGF,wCACE,YACA,mBAGF,yBACE,iCACA,WACA,oBAGF,6BACE,oBAGF,6BACE,WAEF,8BAEE,WAQR,cAEE,WACA,aACA,aACA,cACA,SACA,kBACA,UACA,mBAEA,2BACE,aChJF,oCDoIF,cAiBI,kBACA,kBAEA,2BACE,oBACA","file":"stepper.css"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
table{--border-width: 2px;--inner-border-width: 1px;width:100%;font-size:1rem;border:none;margin-bottom:2rem;overflow:auto}td,th{padding:1rem 2rem 1rem 0;font-weight:normal;text-align:left;vertical-align:top;border:none;font-size:1rem;line-height:1.5rem;color:var(--colour-body)}td:first-child,th:first-child{padding-left:0.5rem}th{font-weight:bold;color:var(--colour-heading)}tr{border-bottom:var(--inner-border-width) solid currentColor;border-color:var(--colour-border)}tr:last-child{border-bottom:var(--border-width) solid currentColor;border-color:var(--colour-border)}thead tr:first-child{border-top:var(--border-width) solid currentColor;border-color:var(--colour-border)}thead th{font-size:1rem;line-height:1.5rem;padding-bottom:1.5rem;font-weight:bold;vertical-align:bottom}@media screen and (min-width: 36em){thead th{font-size:1.125rem;white-space:nowrap}}tbody:first-child tr:first-child{border-top:var(--border-width) solid currentColor;border-color:var(--colour-border)}.table__wrapper.border-0 table,table.border-0{--border-width: 0px;--inner-border-width: 0px}.table__wrapper{display:block;width:calc(100% + 1rem);padding-right:1rem;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;margin-bottom:2rem}.table__wrapper table{margin-bottom:0;display:table;overflow:hidden}@media screen and (max-width: 36em){.table__wrapper:not(.table-fullwidth):not(.client-table){overflow:hidden}.table__wrapper:not(.table-fullwidth):not(.client-table) thead{display:none}.table__wrapper:not(.table-fullwidth):not(.client-table) tbody{display:block;border-top:2px solid currentColor;border-color:var(--colour-border)}.table__wrapper:not(.table-fullwidth):not(.client-table) tr{display:block;position:relative;padding-top:1rem;padding-bottom:1rem}.table__wrapper:not(.table-fullwidth):not(.client-table) td,.table__wrapper:not(.table-fullwidth):not(.client-table) th{display:block;padding-right:0;padding-top:0;padding-left:0.5rem}.table__wrapper:not(.table-fullwidth):not(.client-table) td[data-label]:before,.table__wrapper:not(.table-fullwidth):not(.client-table) th[data-label]:before{content:attr(data-label);color:var(--colour-heading);padding:0;margin-bottom:0;display:block;font-weight:bold;margin:0}.table__wrapper:not(.table-fullwidth):not(.client-table).table-minify tr:not(:hover) td:not(:first-child){display:none}}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.1)}.bg-light .table-striped tbody tr:nth-of-type(odd){background-color:var(--colour-white)}.table-hover tbody tr:hover,.table-hover tbody tr:focus{background-color:rgba(0,0,0,.2)}[data-sortable]{cursor:pointer;position:relative;user-select:none;padding-right:3.5rem}[data-sortable]:hover{color:var(--colour-hover)}[data-sortable]:after{content:"";position:absolute;top:0;right:0;width:3.5rem;height:4rem;display:block;mask-image:var(--icon-sort);mask-size:.6rem .8rem;mask-repeat:no-repeat;mask-position:calc(100% - 1.5rem) calc(50% - .25rem);-webkit-mask-image:var(--icon-sort);-webkit-mask-size:.6rem .8rem;-webkit-mask-repeat:no-repeat;-webkit-mask-position:calc(100% - 1.5rem) calc(50% - .25rem);background-color:currentColor}[data-sortable][aria-sort=ascending]:after{--icon-sort: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' preserveAspectRatio='none'%3E%3Cpath d='M51 1l25 23 24 22H1l25-22z'/%3E%3Cpath opacity='.3' d='M51 101l25-23 24-22H1l25 22z'/%3E%3C/svg%3E")}[data-sortable][aria-sort=descending]:after{--icon-sort: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' preserveAspectRatio='none'%3E%3Cpath opacity='.3' d='M51 1l25 23 24 22H1l25-22z'/%3E%3Cpath d='M51 101l25-23 24-22H1l25 22z'/%3E%3C/svg%3E")}.table__pagination select{max-width:15rem}.table__pagination .showing-input-field{min-width:4.5rem}.table__pagination .page-number{min-width:7rem}.table-order-reset{cursor:pointer;position:relative;width:1rem;overflow:hidden;text-indent:-200%}.table-order-reset:hover{color:var(--colour-hover)}.table-order-reset:after{content:"#";position:absolute;left:.5rem;top:1rem;text-indent:0}[data-reorder] tr[draggable]{cursor:move}[data-reorder] tr[draggable]:hover,[data-reorder] tr[draggable]:focus{background-color:rgba(0,0,0,.2)}[data-reorder] tr[draggable].tr--dragging{background:var(--colour-muted)}[data-reorder] tr[draggable].tr--dropable{background-color:rgba(0,0,0,.2)}.note-feed td:last-child{min-width:20rem}/*# sourceMappingURL=tables.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../sass/components/tables.scss","../../sass/_functions/mixins.scss"],"names":[],"mappings":"AAGA,MACE,oBACA,0BACA,WACA,eACA,YACA,mBACA,cAGF,MACE,yBACA,mBACA,gBACA,mBACA,YACA,eACA,mBACA,yBAEA,8BACE,oBAIJ,GACE,iBCUE,4BDNJ,GACE,2DCKE,kCDFF,cACE,qDCCA,kCDKF,qBACE,kDCNA,kCDUF,SACE,eACA,mBACA,sBAQA,iBACA,sBCvDA,oCD2CF,SAOI,mBACA,oBASJ,iCACE,kDC5BA,kCDiCJ,8CAGE,oBACA,0BAMF,gBACE,cACA,wBACA,mBACA,gBACA,iCACA,4CACA,mBAEA,sBACE,gBACA,cACA,gBAMJ,oCACE,yDAEE,gBAEA,+DACE,aAGF,+DACE,cACA,kCCxEF,kCD4EA,4DACE,cACA,kBACA,iBACA,oBAGF,wHAEE,cACA,gBACA,cACA,oBAEA,8JACE,yBACA,4BACA,UACA,gBACA,cACA,iBACA,SAKF,0GACE,cASR,yCAEE,gCAEA,mDCpHE,qCD6HF,wDAEE,gCAOJ,gBAEE,eACA,kBACA,iBACA,qBAEA,sBACE,0BAGJ,sBAEE,WACA,kBACA,MACA,QACA,aACA,YACA,cACA,4BACA,sBACA,sBACA,qDAEA,oCACA,8BACA,8BACA,6DACA,8BAGF,2CACE,mQAGF,4CACE,mQAKF,0BACE,gBAEF,wCACE,iBAEF,gCACE,eAKF,mBAEE,eACA,kBACA,WAMA,gBACA,kBALA,yBACE,0BAMF,yBACE,YACA,kBACA,WACA,SACA,cAIJ,6BAEE,YAEA,sEAEE,gCAGF,0CACE,+BAGF,0CAEE,gCASF,yBACE","file":"tables.css"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.tabs{position:relative}.tabs>.tabs__links{margin-bottom:1.5rem;overflow:hidden}.tabs>.tabs__links .link:not(.text-decoration-none):not(.btn){--is-current: 0;font-weight:bold;font-family:var(--font-heading);font-size:1.125rem;cursor:pointer;margin:0 0 .5rem 0;float:left;clear:both;padding:0}@media screen and (min-width: 36em){.tabs>.tabs__links .link:not(.text-decoration-none):not(.btn){clear:none;margin-bottom:0;margin-right:2rem}}.tabs>.tabs__links .link:not(.text-decoration-none):not(.btn):before{width:0;width:calc(var(--is-current)*100%)}.tabs>.tabs__links .link:not(.text-decoration-none):not(.btn):hover:before,.tabs>.tabs__links .link:not(.text-decoration-none):not(.btn):focus:before,.tabs>.tabs__links .link:not(.text-decoration-none):not(.btn).focus:before{width:100%}.tabs .tabs__links .link:not(.text-decoration-none):not(.btn)[aria-pressed=true]{--is-current: 1;--panel-tab-colour: white;--panel-tab-border: var(--colour-secondary) }.admin-panel .tabs__links,:host(.admin-panel) .tabs__links{margin-top:-3px !important;margin-left:calc(var(--panel-gutter)*-1);margin-right:calc(var(--panel-gutter)*-1);display:flex;flex-direction:column;background-color:var(--body-bg);border-bottom:2px solid var(--colour-border-light);margin-bottom:var(--panel-gutter)}@media screen and (min-width: 36em){.admin-panel .tabs__links,:host(.admin-panel) .tabs__links{flex-direction:row;border-top:1px solid var(--colour-border-light)}}.admin-panel .tabs__links .link:not(.text-decoration-none):not(.btn),:host(.admin-panel) .tabs__links .link:not(.text-decoration-none):not(.btn){padding:var(--panel-gutter);margin:0;width:100%;background:var(--panel-tab-colour);border-top:1px solid var(--colour-border-light);border-left:3px solid var(--panel-tab-border, #fafafa);text-align:left}.admin-panel .tabs__links .link:not(.text-decoration-none):not(.btn):before,:host(.admin-panel) .tabs__links .link:not(.text-decoration-none):not(.btn):before{display:none}@media screen and (min-width: 36em){.admin-panel .tabs__links .link:not(.text-decoration-none):not(.btn),:host(.admin-panel) .tabs__links .link:not(.text-decoration-none):not(.btn){margin-right:0 !important;border-top:3px solid var(--panel-tab-border, #fafafa)}.admin-panel .tabs__links .link:not(.text-decoration-none):not(.btn):first-child,:host(.admin-panel) .tabs__links .link:not(.text-decoration-none):not(.btn):first-child{border-left:none !important}.admin-panel .tabs__links .link:not(.text-decoration-none):not(.btn):not(:first-child),:host(.admin-panel) .tabs__links .link:not(.text-decoration-none):not(.btn):not(:first-child){border-left:1px solid var(--colour-border-light) !important}}:host(.admin-panel){display:block}/*# sourceMappingURL=tabs.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../sass/components/tabs.scss","../../sass/_functions/mixins.scss"],"names":[],"mappings":"AAEA,MAEE,kBAEA,mBACE,qBACA,gBAEA,8DACE,gBACA,iBACA,gCACA,mBACA,eACA,mBACA,WACA,WACA,UCbF,oCDIA,8DAYI,WACA,gBACA,mBAGF,qEACE,QACA,mCAGF,iOAGE,WAKN,iFAEE,gBACA,0BACA,6CAKJ,2DAGE,2BACA,yCACA,0CACA,aACA,sBACA,gCACA,mDACA,kCCrDE,oCD2CJ,2DAcI,mBACA,iDAGF,iJACE,4BACA,SACA,WACA,mCACA,gDACA,uDACA,gBAEA,+JACE,aCvEF,oCD6DF,iJAeI,0BAWA,sDATA,yKACE,4BAGF,qLAEE,6DAQR,oBAEE","file":"tabs.css"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.testimonial{--testimonial-padding: 1rem;--testimonial-spacing: 1rem}@media screen and (min-width: 62em){.testimonial{--testimonial-padding: 4rem;--testimonial-spacing: 2rem}}.testimonial>div:first-child{position:relative;overflow:hidden}.testimonial .circle{color:currentColor;position:absolute;top:-18rem;right:-8rem;font-size:28rem;border-width:4px}.testimonial__images{overflow:auto;scroll-snap-type:x mandatory;display:flex;user-select:none;touch-action:pan-x;height:14.375rem}@media screen and (min-width: 36em){.testimonial__images{height:21.25rem}}@media screen and (min-width: 62em){.testimonial__images{min-height:100%;scroll-snap-type:y mandatory;flex-direction:column;touch-action:pan-y}}.testimonial__images img{scroll-snap-align:start;user-select:none;pointer-events:none;flex-shrink:0}.testimonial .testimonial__controls{display:none}.testimonial.testimonial--multi .testimonial__controls{display:block;position:absolute;bottom:0;left:50%;transform:translate(-50%, 50%)}@media screen and (min-width: 62em){.testimonial.testimonial--multi .testimonial__controls{left:auto;bottom:auto;right:0;top:50%;transform:rotate(90deg) translate(0, -120%);transform-origin:center}}.testimonial h2{padding:2rem var(--testimonial-padding) 0 var(--testimonial-padding)}@media screen and (min-width: 36em){.testimonial h2{padding-top:3rem}}@media screen and (min-width: 62em){.testimonial h2{padding-top:9rem}}.testimonial__content{--display-none: none;margin:0 var(--testimonial-padding) var(--testimonial-spacing) var(--testimonial-padding);position:relative}@media screen and (min-width: 62em){.testimonial__content{--display-none: block}.testimonial__content blockquote:not(.largest){position:absolute;top:0}}.testimonial[data-show="1"] blockquote:not(:nth-child(1)){display:var(--display-none);opacity:0;user-select:none;pointer-events:none}.testimonial[data-show="2"] blockquote:not(:nth-child(2)){display:var(--display-none);opacity:0;user-select:none;pointer-events:none}.testimonial[data-show="3"] blockquote:not(:nth-child(3)){display:var(--display-none);opacity:0;user-select:none;pointer-events:none}.testimonial[data-show="4"] blockquote:not(:nth-child(4)){display:var(--display-none);opacity:0;user-select:none;pointer-events:none}.testimonial[data-show="5"] blockquote:not(:nth-child(5)){display:var(--display-none);opacity:0;user-select:none;pointer-events:none}.testimonial[data-show="6"] blockquote:not(:nth-child(6)){display:var(--display-none);opacity:0;user-select:none;pointer-events:none}.testimonial[data-show="7"] blockquote:not(:nth-child(7)){display:var(--display-none);opacity:0;user-select:none;pointer-events:none}.testimonial[data-show="8"] blockquote:not(:nth-child(8)){display:var(--display-none);opacity:0;user-select:none;pointer-events:none}.testimonial[data-show="9"] blockquote:not(:nth-child(9)){display:var(--display-none);opacity:0;user-select:none;pointer-events:none}.testimonial[data-show="10"] blockquote:not(:nth-child(10)){display:var(--display-none);opacity:0;user-select:none;pointer-events:none}.testimonial__after{padding:1rem var(--testimonial-padding) var(--testimonial-spacing) var(--testimonial-padding)}.testimonial__images::-webkit-scrollbar{display:none}.testimonial__images{-ms-overflow-style:none;scrollbar-width:none}/*# sourceMappingURL=testimonial.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../sass/components/testimonial.scss","../../sass/_functions/mixins.scss"],"names":[],"mappings":"AAEA,aAEE,4BACA,4BCCE,oCDJJ,aAMI,4BACA,6BAIF,6BAEE,kBACA,gBAGF,qBACE,mBACA,kBACA,WACA,YACA,gBACA,iBAGF,qBACE,cACA,6BACA,aACA,iBACA,mBACA,iBC5BA,oCDsBF,qBAUI,iBChCF,oCDsBF,qBAcI,gBACA,6BACA,sBACA,oBAGF,yBAEE,wBACA,iBACA,oBACA,cAIJ,oCACE,aAGF,uDACE,cACA,kBACA,SACA,SACA,+BC5DA,oCDuDF,uDAQI,UACA,YACA,QACA,QACA,4CACA,yBAKJ,gBACE,qEC1EA,oCDyEF,gBAII,kBC7EF,oCDyEF,gBAOI,kBAIJ,sBAEE,qBACA,0FACA,kBCxFA,oCDoFF,sBAOI,sBAEA,+CACE,kBACA,OAQJ,0DACE,4BACA,UACA,iBACA,oBAJF,0DACE,4BACA,UACA,iBACA,oBAJF,0DACE,4BACA,UACA,iBACA,oBAJF,0DACE,4BACA,UACA,iBACA,oBAJF,0DACE,4BACA,UACA,iBACA,oBAJF,0DACE,4BACA,UACA,iBACA,oBAJF,0DACE,4BACA,UACA,iBACA,oBAJF,0DACE,4BACA,UACA,iBACA,oBAJF,0DACE,4BACA,UACA,iBACA,oBAJF,4DACE,4BACA,UACA,iBACA,oBAIJ,oBAEE,8FAKJ,wCACE,aAIF,qBACE,wBACA","file":"testimonial.css"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.timeline{--breakpoint:(100% - 62rem);--pl: clamp(0rem, var(--breakpoint) * -1000, 4rem);--line-pos: clamp(1rem, var(--breakpoint) * 1000, 50%);--circle-pos: 1rem;--line-length: 100%;--img-order: 1;position:relative;padding-top:0.25rem;padding-left:var(--pl);padding-bottom:1rem;width:100%;display:flex;justify-content:space-between;flex-direction:row;flex-wrap:wrap;align-items:flex-start}.timeline__container:not(.timeline--simple) .timeline{align-items:center}@media screen and (min-width: 62em){.timeline__container:not(.timeline--simple) .timeline{--img-order: 0;--circle-pos: 50%;--line-length: 50%}}.timeline:before{content:" ";display:block;background:#000;width:4px;height:100%;position:absolute;top:0;left:var(--line-pos)}.timeline:after{content:" ";display:block;background:#fff;width:2rem;height:2rem;margin-top:-1rem;position:absolute;top:var(--circle-pos);left:var(--line-pos);margin-left:calc(-1rem + 2px);border:4px solid #000;border-radius:50%}.timeline>*{max-width:28.75rem;order:1}.timeline>img{max-width:min(100%, 28.75rem);margin-bottom:2rem}.timeline:nth-child(even)>img{order:var(--img-order)}.timeline:first-child:before{top:var(--circle-pos);height:var(--line-length)}.timeline:last-child{padding-bottom:0;margin-bottom:2rem}.timeline:last-child:before{height:var(--line-length)}.timeline:last-child>img{margin-bottom:0}/*# sourceMappingURL=timeline.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../sass/components/timeline.scss","../../sass/_functions/mixins.scss"],"names":[],"mappings":"AAGA,UAEE,4BACA,mDACA,uDACA,mBACA,oBACA,eAGA,kBACA,oBACA,uBACA,oBACA,WACA,aACA,8BACA,mBACA,eACA,uBAEA,sDAEE,mBCpBA,oCDkBF,sDAKI,eACA,kBACA,oBAIJ,iBACE,YACA,cACA,gBACA,UACA,YACA,kBACA,MACA,qBAGF,gBACE,YACA,cACA,gBACA,WACA,YACA,iBACA,kBACA,sBACA,qBACA,8BACA,sBACA,kBAGF,YACE,mBACA,QAGF,cACE,8BACA,mBAGF,8BACE,uBAKA,6BACE,sBACA,0BAIJ,qBACE,iBACA,mBAEA,4BACE,0BAGF,yBACE","file":"timeline.css"}
|