From 75732cb40a0bc88e1e2921764348043c79f6a984 Mon Sep 17 00:00:00 2001 From: Miles Drake <44380377+miles-drake@users.noreply.github.com> Date: Thu, 13 May 2021 16:22:23 +0100 Subject: [PATCH] Initial commit --- .Rbuildignore | 2 + .gitignore | 119 + DESCRIPTION | 16 + LICENSE | 674 +++ NAMESPACE | 3 + R/common.R | 35 + R/copy-files.R | 53 + R/project-binding.R | 51 + README.md | 126 + .../templates/data/skeleton/_template.html | 420 ++ .../templates/data/skeleton/skeleton.Rmd | 36 + .../css/jquery.dataTables.min.css | 1 + .../datatables-license.txt | 11 + .../datatables-1.10.23_sg/images/sort_asc.png | Bin 0 -> 116 bytes .../images/sort_asc_disabled.png | Bin 0 -> 144 bytes .../images/sort_both.png | Bin 0 -> 199 bytes .../images/sort_desc.png | Bin 0 -> 142 bytes .../images/sort_desc_disabled.png | Bin 0 -> 146 bytes .../js/datatables.min.js | 1 + .../js/jquery.dataTables.min.js | 184 + .../sg/css/design-system-base.css | 5160 +++++++++++++++++ .../sg/css/design-system-fixes.css | 21 + .../skeleton/template_libs/sg/css/layout.css | 58 + .../template_libs/sg/css/navbar-full.css | 94 + .../template_libs/sg/css/navbar-mobile.css | 164 + .../skeleton/template_libs/sg/css/navbar.css | 3 + .../skeleton/template_libs/sg/css/print.css | 104 + .../skeleton/template_libs/sg/css/toc.css | 40 + .../skeleton/template_libs/sg/css/tocify.css | 34 + .../sg/images/favicons/apple-touch-icon.png | Bin 0 -> 1918 bytes .../sg/images/favicons/favicon-16x16.png | Bin 0 -> 172 bytes .../sg/images/favicons/favicon-32x32.png | Bin 0 -> 283 bytes .../sg/images/favicons/favicon.ico | Bin 0 -> 9662 bytes .../sg/images/favicons/safari-pinned-tab.svg | 10 + .../sg/images/icons/icons.stack.svg | 2 + .../template_libs/sg/images/logos/ogl.svg | 10 + .../sg/images/logos/scottish-government.svg | 104 + inst/rmarkdown/templates/data/template.yaml | 3 + .../templates/project/resources/_site.yml | 19 + .../project/resources/accessibility.Rmd | 32 + .../templates/project/resources/contact.Rmd | 32 + .../templates/project/resources/cookies.Rmd | 32 + .../templates/project/resources/example.Rmd | 93 + .../templates/project/resources/index.Rmd | 35 + .../templates/project/resources/privacy.Rmd | 32 + .../templates/project/scottish-flag.png | Bin 0 -> 451 bytes inst/rstudio/templates/project/skeleton.dcf | 6 + man/images/download-from-github.png | Bin 0 -> 6695 bytes man/images/logo.svg | 31 + man/images/mockup.png | Bin 0 -> 31818 bytes man/images/new-document.png | Bin 0 -> 15509 bytes man/images/new-website.png | Bin 0 -> 19107 bytes man/images/yaml-example.png | Bin 0 -> 14443 bytes sgtemplates.Rproj | 21 + 54 files changed, 7872 insertions(+) create mode 100644 .Rbuildignore create mode 100644 .gitignore create mode 100644 DESCRIPTION create mode 100644 LICENSE create mode 100644 NAMESPACE create mode 100644 R/common.R create mode 100644 R/copy-files.R create mode 100644 R/project-binding.R create mode 100644 README.md create mode 100644 inst/rmarkdown/templates/data/skeleton/_template.html create mode 100644 inst/rmarkdown/templates/data/skeleton/skeleton.Rmd create mode 100644 inst/rmarkdown/templates/data/skeleton/template_libs/datatables-1.10.23_sg/css/jquery.dataTables.min.css create mode 100644 inst/rmarkdown/templates/data/skeleton/template_libs/datatables-1.10.23_sg/datatables-license.txt create mode 100644 inst/rmarkdown/templates/data/skeleton/template_libs/datatables-1.10.23_sg/images/sort_asc.png create mode 100644 inst/rmarkdown/templates/data/skeleton/template_libs/datatables-1.10.23_sg/images/sort_asc_disabled.png create mode 100644 inst/rmarkdown/templates/data/skeleton/template_libs/datatables-1.10.23_sg/images/sort_both.png create mode 100644 inst/rmarkdown/templates/data/skeleton/template_libs/datatables-1.10.23_sg/images/sort_desc.png create mode 100644 inst/rmarkdown/templates/data/skeleton/template_libs/datatables-1.10.23_sg/images/sort_desc_disabled.png create mode 100644 inst/rmarkdown/templates/data/skeleton/template_libs/datatables-1.10.23_sg/js/datatables.min.js create mode 100644 inst/rmarkdown/templates/data/skeleton/template_libs/datatables-1.10.23_sg/js/jquery.dataTables.min.js create mode 100644 inst/rmarkdown/templates/data/skeleton/template_libs/sg/css/design-system-base.css create mode 100644 inst/rmarkdown/templates/data/skeleton/template_libs/sg/css/design-system-fixes.css create mode 100644 inst/rmarkdown/templates/data/skeleton/template_libs/sg/css/layout.css create mode 100644 inst/rmarkdown/templates/data/skeleton/template_libs/sg/css/navbar-full.css create mode 100644 inst/rmarkdown/templates/data/skeleton/template_libs/sg/css/navbar-mobile.css create mode 100644 inst/rmarkdown/templates/data/skeleton/template_libs/sg/css/navbar.css create mode 100644 inst/rmarkdown/templates/data/skeleton/template_libs/sg/css/print.css create mode 100644 inst/rmarkdown/templates/data/skeleton/template_libs/sg/css/toc.css create mode 100644 inst/rmarkdown/templates/data/skeleton/template_libs/sg/css/tocify.css create mode 100644 inst/rmarkdown/templates/data/skeleton/template_libs/sg/images/favicons/apple-touch-icon.png create mode 100644 inst/rmarkdown/templates/data/skeleton/template_libs/sg/images/favicons/favicon-16x16.png create mode 100644 inst/rmarkdown/templates/data/skeleton/template_libs/sg/images/favicons/favicon-32x32.png create mode 100644 inst/rmarkdown/templates/data/skeleton/template_libs/sg/images/favicons/favicon.ico create mode 100644 inst/rmarkdown/templates/data/skeleton/template_libs/sg/images/favicons/safari-pinned-tab.svg create mode 100644 inst/rmarkdown/templates/data/skeleton/template_libs/sg/images/icons/icons.stack.svg create mode 100644 inst/rmarkdown/templates/data/skeleton/template_libs/sg/images/logos/ogl.svg create mode 100644 inst/rmarkdown/templates/data/skeleton/template_libs/sg/images/logos/scottish-government.svg create mode 100644 inst/rmarkdown/templates/data/template.yaml create mode 100644 inst/rstudio/templates/project/resources/_site.yml create mode 100644 inst/rstudio/templates/project/resources/accessibility.Rmd create mode 100644 inst/rstudio/templates/project/resources/contact.Rmd create mode 100644 inst/rstudio/templates/project/resources/cookies.Rmd create mode 100644 inst/rstudio/templates/project/resources/example.Rmd create mode 100644 inst/rstudio/templates/project/resources/index.Rmd create mode 100644 inst/rstudio/templates/project/resources/privacy.Rmd create mode 100644 inst/rstudio/templates/project/scottish-flag.png create mode 100644 inst/rstudio/templates/project/skeleton.dcf create mode 100644 man/images/download-from-github.png create mode 100644 man/images/logo.svg create mode 100644 man/images/mockup.png create mode 100644 man/images/new-document.png create mode 100644 man/images/new-website.png create mode 100644 man/images/yaml-example.png create mode 100644 sgtemplates.Rproj diff --git a/.Rbuildignore b/.Rbuildignore new file mode 100644 index 0000000..cc79555 --- /dev/null +++ b/.Rbuildignore @@ -0,0 +1,2 @@ +^sgtemplates\.Rproj$ +^\.Rproj\.user$ diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0d73483 --- /dev/null +++ b/.gitignore @@ -0,0 +1,119 @@ +# Created by https://www.toptal.com/developers/gitignore/api/r,linux,macos,windows +# Edit at https://www.toptal.com/developers/gitignore?templates=r,linux,macos,windows + +### Linux ### +*~ + +# temporary files which can be created if a process still has a handle open of a deleted file +.fuse_hidden* + +# KDE directory preferences +.directory + +# Linux trash folder which might appear on any partition or disk +.Trash-* + +# .nfs files are created when an open file is removed but is still being accessed +.nfs* + +### macOS ### +# General +.DS_Store +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon + + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +### R ### +# History files +.Rhistory +.Rapp.history + +# Session Data files +.RData + +# User-specific files +.Ruserdata + +# Example code in package build process +*-Ex.R + +# Output files from R CMD build +/*.tar.gz + +# Output files from R CMD check +/*.Rcheck/ + +# RStudio files +.Rproj.user/ + +# produced vignettes +vignettes/*.html +vignettes/*.pdf + +# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3 +.httr-oauth + +# knitr and R markdown default cache directories +*_cache/ +/cache/ + +# Temporary files created by R markdown +*.utf8.md +*.knit.md + +# R Environment Variables +.Renviron + +### R.Bookdown Stack ### +# R package: bookdown caching files +/*_files/ + +### Windows ### +# Windows thumbnail cache files +Thumbs.db +Thumbs.db:encryptable +ehthumbs.db +ehthumbs_vista.db + +# Dump file +*.stackdump + +# Folder config file +[Dd]esktop.ini + +# Recycle Bin used on file shares +$RECYCLE.BIN/ + +# Windows Installer files +*.cab +*.msi +*.msix +*.msm +*.msp + +# Windows shortcuts +*.lnk + +# End of https://www.toptal.com/developers/gitignore/api/r,linux,macos,windows diff --git a/DESCRIPTION b/DESCRIPTION new file mode 100644 index 0000000..da9f803 --- /dev/null +++ b/DESCRIPTION @@ -0,0 +1,16 @@ +Package: sgtemplates +Title: Scottish Government R Markdown Templates +Version: 1.0.0 +Authors@R: + person( + given = "Miles", + family = "Drake", + role = c("aut", "cre"), + email = "miles.drake@gov.scot" + ) +Description: R markdown templates for data analysts working for the Scottish Government. +License: `use_gpl3_license()` +Encoding: UTF-8 +LazyData: true +Roxygen: list(markdown = TRUE) +RoxygenNote: 7.1.1 diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..f288702 --- /dev/null +++ b/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/NAMESPACE b/NAMESPACE new file mode 100644 index 0000000..136143b --- /dev/null +++ b/NAMESPACE @@ -0,0 +1,3 @@ +# Generated by roxygen2: do not edit by hand + +export(import_template_files) diff --git a/R/common.R b/R/common.R new file mode 100644 index 0000000..4bfc625 --- /dev/null +++ b/R/common.R @@ -0,0 +1,35 @@ +# Variables --------------------------------------------------------------- + +package_name <- "sgtemplates" + +# Functions --------------------------------------------------------------- + +# Test for existence of directory; if directory does not exist, attempt to recursively create directories to path +create_directory <- function(path) { + utils::file_test("-d", path) || dir.create(path, recursive = TRUE) +} + +# Convert paths into the canonical form for the platform; on Windows this is "C:/Parent/Child" +# A simple wrapper for the normalizePath() function +normalise_path <- function(path) { + normalizePath(path = path, winslash = "/", mustWork = FALSE) +} + +# Print package version to console +print_version <- function() { + + date <- as.character(utils::packageDate(pkg = package_name)) + version <- as.character(utils::packageVersion(pkg = package_name)) + + cat( + "Scottish Government Rmd template package", + paste0("\"", package_name, "\""), + "--", + "Version", version, + paste0("(", date, ")."), + fill = TRUE + ) + + invisible(NULL) + +} diff --git a/R/copy-files.R b/R/copy-files.R new file mode 100644 index 0000000..9475543 --- /dev/null +++ b/R/copy-files.R @@ -0,0 +1,53 @@ +#' @export +import_template_files <- function(target_path = NULL) { + + # If target path is not defined, use the current working directory + if (is.null(target_path)) { + target_path <- getwd() + } + + # Normalise the target path + target_path <- normalise_path(target_path) + + # If directory indicated in path does not exist, return an error + # This should prevent the user from accidentally copying the template files to the wrong directory + if (!dir.exists(target_path)) { + stop(paste0("Directory \"", target_path, "\" does not exist.")) + } + + # Copy template files from source path to target path + source_path <- system.file( + "rmarkdown", "templates", "data", "skeleton", + package = package_name, + mustWork = TRUE + ) + + source_files <- list.files( + path = source_path, + recursive = TRUE, + include.dirs = FALSE + ) + + source_files <- source_files[source_files != "skeleton.Rmd"] + + source <- file.path(source_path, source_files) + target <- file.path(target_path, source_files) + lapply(unique(dirname(target)), create_directory) + + file.copy( + from = source, + to = target, + overwrite = TRUE + ) + + # Print confirmation messages to console + print_version() + cat( + "Copied template files to", + paste0("\"", target_path, "\"."), + fill = TRUE + ) + + invisible(NULL) + +} diff --git a/R/project-binding.R b/R/project-binding.R new file mode 100644 index 0000000..64cf616 --- /dev/null +++ b/R/project-binding.R @@ -0,0 +1,51 @@ +# Derived from the binding functions from the Bookdown package +# https://github.com/rstudio/bookdown/blob/master/R/skeleton.R + +site_skeleton <- function(path) { + + path <- normalise_path(path) + + # ensure directory exists + dir.create(path, recursive = TRUE, showWarnings = FALSE) + + # copy 'resources' folder to path + resources <- system.file( + "rstudio", "templates", "project", "resources", + package = package_name, + mustWork = TRUE + ) + + files <- list.files( + resources, + recursive = TRUE, + include.dirs = FALSE + ) + + source <- file.path(resources, files) + target <- file.path(path, files) + lapply(unique(dirname(target)), create_directory) + file.copy(source, target) + + # copy 'template' folder to path + resources <- system.file( + 'rmarkdown', 'templates', 'data', 'skeleton', + package = package_name, + mustWork = TRUE + ) + + files <- list.files( + path = resources, + recursive = TRUE, + include.dirs = FALSE + ) + + files <- files[files != "skeleton.Rmd"] + + source <- file.path(resources, files) + target <- file.path(path, files) + lapply(unique(dirname(target)), create_directory) + file.copy(source, target) + + invisible(NULL) + +} diff --git a/README.md b/README.md new file mode 100644 index 0000000..216b70f --- /dev/null +++ b/README.md @@ -0,0 +1,126 @@ +# sgtemplatesLogo + +[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active) + +R markdown templates for data analysts working for the Scottish Government. `sgtemplates` lets you use RStudio to quickly produce professional, accessible, Government-branded HTML documents and websites. + +The design and styling of the templates is based on the [Digital Scotland Design System](https://designsystem.gov.scot/). + +

+ Screenshot a R markdown website made with sgtemplates +

+ +## Installation + +### Installation with Devtools + +Install `sgtemplates` from GitHub using the `devtools` package. In R, copy and run the following code: + +``` r +devtools::install_github("DataScienceScotland/sgtemplates") +``` + +### Installation in a Restricted Environment + +If you are on a restricted computer, or in a restricted network environment, you may be unable to download binaries from GitHub or use the `devtools` package. You can install `sgtemplates` manually. + +1. Navigate to the `sgtemplates` [repository on GitHub](https://github.com/DataScienceScotland/sgtemplates); +2. Click on the "Code" button, then select "Download ZIP" (see picture below); + +

+ Screenshot of GitHub's download code button +

+ +3. Open or save the ZIP file; +4. Extract the ZIP file to a memorable location, keeping the folder structure; +5. In R, copy and run the following code: + +``` r +install.packages("C:/Users/u000000/Downloads/sgtemplates-main", repos = NULL, type = "source") +``` + +Replace the example path with the path you extracted the ZIP file to. + +## Using the Templates + +### Importing Template Files into Existing Projects + +`sgtemplates` can be easily added to your existing projects. To import the template files to your project folder: + +1. Open your project in R; +2. Copy and run the following code: + +``` r +sgtemplates::import_template_files() +``` + +3. Instruct Knitr to use the template, by adding the following argument to your YAML block: + +``` yaml +output: + html_document: + template: _template.html +``` + +### Creating New R Markdown Documents + +`sgtemplates` is fully integrated into the RStudio IDE, so creating new documents and websites for the Scottish Government is easy. To create a new R markdown document in RStudio: + +1. Select "File > New File > R Markdown"; +2. In the new document wizard, select "From Template"; +3. Select "Scottish Government Template"; +4. Enter your document name and the location that your document will be saved to. Choose "OK". + +

+ Screenshot of RStudio's new R markdown document dialogue, with sgtemplates installed +

+ +### Creating New R Markdown Websites + +To create a new R markdown website -- multiple R markdown documents tied together by a navigation bar and a simple site structure -- in RStudio: + +1. Select "File > New Project"; +2. In the new project wizard, select "New Directory"; +3. Select "Scottish Government Website"; +4. Enter the directory that your website will be saved to. Choose "OK". + +

+ Screenshot of RStudio's new project dialogue, with sgtemplates installed +

+ +Your chosen directory will be populated with example R markdown files. It will also have a \_site.yml file, which contains the configuration and metadata for your website. + +For more information on authoring websites with R markdown, please read the [documentation for R markdown's site generator](https://bookdown.org/yihui/rmarkdown/rmarkdown-site.html). + +### Updating `sgtemplates` + +After updating `sgtemplates`, you can also use the `import_template_files()` function to import the latest versions of the template files to your project folder. `import_template_files()` will overwrite your existing template files with the versions installed in your R library. + +## New Features and YAML Arguments + +You can customise your documents and enable features not present in the default RStudio knitted HTML files through the use of YAML arguments. These will be fully documented in time. At present, the supported arguments can be found in the YAML block of a newly-generated `sgtemplates` R markdown document or website, under the parent YAML argument `sgtemplates`. + +

+ Screenshot of an R markdown document in RStudio, showing some custom YAML arguments +

+ +You do not need to use any new features. Each argument under `sgtemplates` can be safely deleted, if you do not want to use it. + +## Contact + +Feedback is greatly appreciated. Please feel free to leave questions, comments, and suggestions on the [GitHub discussion board](../../discussions). Feedback will help direct our efforts as we continue to improve and iterate on `sgtemplates`. + +If you do not want to share feedback on GitHub, we also value feedback sent by email. Please contact either: + +- The Analytical Workbench support desk at analytical.workbench@gov.scot, or; +- Miles Drake (project author and maintainer) at miles.drake@gov.scot. + +## Contributing + +Please feel free to add [issues](../../issues), or open [pull requests](../../pulls) on GitHub. + +## License + +This repository is publicly available under the [GNU General Public License v3.0](LICENSE). It includes a modified version of [DataTables](https://www.datatables.net/), which is publicly available under the [MIT license](https://www.datatables.net/license/mit). + +Any content produced using `sgtemplates` is assumed to be publicly available under the [Open Government Licence v3.0](http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/), except for graphic assets and where otherwise stated. © Crown Copyright. diff --git a/inst/rmarkdown/templates/data/skeleton/_template.html b/inst/rmarkdown/templates/data/skeleton/_template.html new file mode 100644 index 0000000..4f08583 --- /dev/null +++ b/inst/rmarkdown/templates/data/skeleton/_template.html @@ -0,0 +1,420 @@ + + + + + + + + + + $if(sgtemplates.seo.description)$ + + $endif$ + $if(sgtemplates.seo.keywords)$ + + $endif$ + $for(author-meta)$ + + $endfor$ + $if(date-meta)$ + + $endif$ + + + + + + + + + + + + $if(title-prefix)$$title-prefix$ - $endif$$pagetitle$ + + + $for(header-includes)$ + $header-includes$ + $endfor$ + + + + + + + + + + + + + + $if(sgtemplates.navigation.toc.sticky)$ + + $endif$ + + + $for(css)$ + + $endfor$ + + $if(sgtemplates.datatables)$ + + + + + + $endif$ + + + + + +
+ + + +
+ + + + + +
+ + + +
+
+ + + $if(sgtemplates.navigation.breadcrumb_trail)$ + + $endif$ + + +
+ +
+ + + +
+ +
+ + + $if(title)$ +
+
+
+ $if(sgtemplates.metadata.label)$ + + $endif$ +

$title$

+ $if(subtitle)$ +

$subtitle$

+ $endif$ + +
+
+
+ $endif$ + + +
+ $if(abstract)$ +

$abstract$

+ $endif$ + $body$ +
+ + + $if(code_menu)$ +
+ + +
+ $endif$ + + $for(include-after)$ + $include-after$ + $endfor$ + +
+
+
+
+ + + + + + +
+ + + + +
+ +
+ +
+ + + + + + $if(navbar)$ + + $endif$ + + + + + + $if(toc)$ + + + + $endif$ + +
+ + + + diff --git a/inst/rmarkdown/templates/data/skeleton/skeleton.Rmd b/inst/rmarkdown/templates/data/skeleton/skeleton.Rmd new file mode 100644 index 0000000..29117a5 --- /dev/null +++ b/inst/rmarkdown/templates/data/skeleton/skeleton.Rmd @@ -0,0 +1,36 @@ +--- +title: "Untitled" +date: "`r Sys.Date()`" +sgtemplates: + datatables: + features: + info: true + ordering: true + paging: true + searching: false + header: + phase_banner: + tag: "WIP" + text: "This is a work in progress." + site_branding: "Scottish Government" + metadata: + label: "Report" + navigation: + toc: + sticky: false +output: + html_document: + code_download: false + df_print: paged + fig_caption: true + number_sections: false + self_contained: false + template: "_template.html" + toc: true + toc_depth: 2 + toc_float: false +--- + +```{r setup, include = FALSE} +knitr::opts_chunk$set(echo = TRUE) +``` diff --git a/inst/rmarkdown/templates/data/skeleton/template_libs/datatables-1.10.23_sg/css/jquery.dataTables.min.css b/inst/rmarkdown/templates/data/skeleton/template_libs/datatables-1.10.23_sg/css/jquery.dataTables.min.css new file mode 100644 index 0000000..15fe5f5 --- /dev/null +++ b/inst/rmarkdown/templates/data/skeleton/template_libs/datatables-1.10.23_sg/css/jquery.dataTables.min.css @@ -0,0 +1 @@ +table.dataTable{width:100%;margin:0 auto;clear:both;border-collapse:separate;border-spacing:0}table.dataTable thead th,table.dataTable tfoot th{font-weight:bold}table.dataTable thead th,table.dataTable thead td{padding:10px 18px;border-bottom:1px solid #111}table.dataTable thead th:active,table.dataTable thead td:active{outline:none}table.dataTable tfoot th,table.dataTable tfoot td{padding:10px 18px 6px 18px;border-top:1px solid #111}table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc,table.dataTable thead .sorting_asc_disabled,table.dataTable thead .sorting_desc_disabled{cursor:pointer;*cursor:hand;background-repeat:no-repeat;background-position:center right}table.dataTable thead .sorting{background-image:url("../images/sort_both.png")}table.dataTable thead .sorting_asc{background-image:url("../images/sort_asc.png")}table.dataTable thead .sorting_desc{background-image:url("../images/sort_desc.png")}table.dataTable thead .sorting_asc_disabled{background-image:url("../images/sort_asc_disabled.png")}table.dataTable thead .sorting_desc_disabled{background-image:url("../images/sort_desc_disabled.png")}table.dataTable tbody tr{background-color:#fff}table.dataTable tbody tr.selected{background-color:#b0bed9}table.dataTable tbody th,table.dataTable tbody td{padding:8px 10px}table.dataTable.row-border tbody th,table.dataTable.row-border tbody td,table.dataTable.display tbody th,table.dataTable.display tbody td{border-top:1px solid #ddd}table.dataTable.row-border tbody tr:first-child th,table.dataTable.row-border tbody tr:first-child td,table.dataTable.display tbody tr:first-child th,table.dataTable.display tbody tr:first-child td{border-top:none}table.dataTable.cell-border tbody th,table.dataTable.cell-border tbody td{border-top:1px solid #ddd;border-right:1px solid #ddd}table.dataTable.cell-border tbody tr th:first-child,table.dataTable.cell-border tbody tr td:first-child{border-left:1px solid #ddd}table.dataTable.cell-border tbody tr:first-child th,table.dataTable.cell-border tbody tr:first-child td{border-top:none}table.dataTable.stripe tbody tr.odd,table.dataTable.display tbody tr.odd{background-color:#f9f9f9}table.dataTable.stripe tbody tr.odd.selected,table.dataTable.display tbody tr.odd.selected{background-color:#acbad4}table.dataTable.hover tbody tr:hover,table.dataTable.display tbody tr:hover{background-color:#f6f6f6}table.dataTable.hover tbody tr:hover.selected,table.dataTable.display tbody tr:hover.selected{background-color:#aab7d1}table.dataTable.order-column tbody tr>.sorting_1,table.dataTable.order-column tbody tr>.sorting_2,table.dataTable.order-column tbody tr>.sorting_3,table.dataTable.display tbody tr>.sorting_1,table.dataTable.display tbody tr>.sorting_2,table.dataTable.display tbody tr>.sorting_3{background-color:#fafafa}table.dataTable.order-column tbody tr.selected>.sorting_1,table.dataTable.order-column tbody tr.selected>.sorting_2,table.dataTable.order-column tbody tr.selected>.sorting_3,table.dataTable.display tbody tr.selected>.sorting_1,table.dataTable.display tbody tr.selected>.sorting_2,table.dataTable.display tbody tr.selected>.sorting_3{background-color:#acbad5}table.dataTable.display tbody tr.odd>.sorting_1,table.dataTable.order-column.stripe tbody tr.odd>.sorting_1{background-color:#f1f1f1}table.dataTable.display tbody tr.odd>.sorting_2,table.dataTable.order-column.stripe tbody tr.odd>.sorting_2{background-color:#f3f3f3}table.dataTable.display tbody tr.odd>.sorting_3,table.dataTable.order-column.stripe tbody tr.odd>.sorting_3{background-color:whitesmoke}table.dataTable.display tbody tr.odd.selected>.sorting_1,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_1{background-color:#a6b4cd}table.dataTable.display tbody tr.odd.selected>.sorting_2,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_2{background-color:#a8b5cf}table.dataTable.display tbody tr.odd.selected>.sorting_3,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_3{background-color:#a9b7d1}table.dataTable.display tbody tr.even>.sorting_1,table.dataTable.order-column.stripe tbody tr.even>.sorting_1{background-color:#fafafa}table.dataTable.display tbody tr.even>.sorting_2,table.dataTable.order-column.stripe tbody tr.even>.sorting_2{background-color:#fcfcfc}table.dataTable.display tbody tr.even>.sorting_3,table.dataTable.order-column.stripe tbody tr.even>.sorting_3{background-color:#fefefe}table.dataTable.display tbody tr.even.selected>.sorting_1,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_1{background-color:#acbad5}table.dataTable.display tbody tr.even.selected>.sorting_2,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_2{background-color:#aebcd6}table.dataTable.display tbody tr.even.selected>.sorting_3,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_3{background-color:#afbdd8}table.dataTable.display tbody tr:hover>.sorting_1,table.dataTable.order-column.hover tbody tr:hover>.sorting_1{background-color:#eaeaea}table.dataTable.display tbody tr:hover>.sorting_2,table.dataTable.order-column.hover tbody tr:hover>.sorting_2{background-color:#ececec}table.dataTable.display tbody tr:hover>.sorting_3,table.dataTable.order-column.hover tbody tr:hover>.sorting_3{background-color:#efefef}table.dataTable.display tbody tr:hover.selected>.sorting_1,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_1{background-color:#a2aec7}table.dataTable.display tbody tr:hover.selected>.sorting_2,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_2{background-color:#a3b0c9}table.dataTable.display tbody tr:hover.selected>.sorting_3,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_3{background-color:#a5b2cb}table.dataTable.no-footer{border-bottom:1px solid #111}table.dataTable.nowrap th,table.dataTable.nowrap td{white-space:nowrap}table.dataTable.compact thead th,table.dataTable.compact thead td{padding:4px 17px}table.dataTable.compact tfoot th,table.dataTable.compact tfoot td{padding:4px}table.dataTable.compact tbody th,table.dataTable.compact tbody td{padding:4px}table.dataTable th.dt-left,table.dataTable td.dt-left{text-align:left}table.dataTable th.dt-center,table.dataTable td.dt-center,table.dataTable td.dataTables_empty{text-align:center}table.dataTable th.dt-right,table.dataTable td.dt-right{text-align:right}table.dataTable th.dt-justify,table.dataTable td.dt-justify{text-align:justify}table.dataTable th.dt-nowrap,table.dataTable td.dt-nowrap{white-space:nowrap}table.dataTable thead th.dt-head-left,table.dataTable thead td.dt-head-left,table.dataTable tfoot th.dt-head-left,table.dataTable tfoot td.dt-head-left{text-align:left}table.dataTable thead th.dt-head-center,table.dataTable thead td.dt-head-center,table.dataTable tfoot th.dt-head-center,table.dataTable tfoot td.dt-head-center{text-align:center}table.dataTable thead th.dt-head-right,table.dataTable thead td.dt-head-right,table.dataTable tfoot th.dt-head-right,table.dataTable tfoot td.dt-head-right{text-align:right}table.dataTable thead th.dt-head-justify,table.dataTable thead td.dt-head-justify,table.dataTable tfoot th.dt-head-justify,table.dataTable tfoot td.dt-head-justify{text-align:justify}table.dataTable thead th.dt-head-nowrap,table.dataTable thead td.dt-head-nowrap,table.dataTable tfoot th.dt-head-nowrap,table.dataTable tfoot td.dt-head-nowrap{white-space:nowrap}table.dataTable tbody th.dt-body-left,table.dataTable tbody td.dt-body-left{text-align:left}table.dataTable tbody th.dt-body-center,table.dataTable tbody td.dt-body-center{text-align:center}table.dataTable tbody th.dt-body-right,table.dataTable tbody td.dt-body-right{text-align:right}table.dataTable tbody th.dt-body-justify,table.dataTable tbody td.dt-body-justify{text-align:justify}table.dataTable tbody th.dt-body-nowrap,table.dataTable tbody td.dt-body-nowrap{white-space:nowrap}table.dataTable,table.dataTable th,table.dataTable td{box-sizing:content-box}.dataTables_wrapper{position:relative;clear:both;*zoom:1;zoom:1}.dataTables_wrapper .dataTables_length{float:left}.dataTables_wrapper .dataTables_length select{border:1px solid #aaa;border-radius:3px;padding:5px;background-color:transparent;padding:4px}.dataTables_wrapper .dataTables_filter{float:right;text-align:right}.dataTables_wrapper .dataTables_filter input{border:1px solid #aaa;border-radius:3px;padding:5px;background-color:transparent;margin-left:3px}.dataTables_wrapper .dataTables_info{clear:both;float:left;padding-top:.755em}.dataTables_wrapper .dataTables_paginate{float:right;text-align:right;padding-top:.25em}.dataTables_wrapper .dataTables_paginate .paginate_button{box-sizing:border-box;display:inline-block;min-width:1.5em;padding:.5em 1em;margin-left:2px;text-align:center;text-decoration:none !important;cursor:pointer;*cursor:hand;color:#333 !important;border:1px solid transparent;border-radius:2px}.dataTables_wrapper .dataTables_paginate .paginate_button.current,.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{color:#333 !important;border:1px solid #979797;background-color:white;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, #dcdcdc));background:-webkit-linear-gradient(top, white 0%, #dcdcdc 100%);background:-moz-linear-gradient(top, white 0%, #dcdcdc 100%);background:-ms-linear-gradient(top, white 0%, #dcdcdc 100%);background:-o-linear-gradient(top, white 0%, #dcdcdc 100%);background:linear-gradient(to bottom, white 0%, #dcdcdc 100%)}.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active{cursor:default;color:#666 !important;border:1px solid transparent;background:transparent;box-shadow:none}.dataTables_wrapper .dataTables_paginate .paginate_button:hover{color:white !important;border:1px solid #111;background-color:#585858;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111));background:-webkit-linear-gradient(top, #585858 0%, #111 100%);background:-moz-linear-gradient(top, #585858 0%, #111 100%);background:-ms-linear-gradient(top, #585858 0%, #111 100%);background:-o-linear-gradient(top, #585858 0%, #111 100%);background:linear-gradient(to bottom, #585858 0%, #111 100%)}.dataTables_wrapper .dataTables_paginate .paginate_button:active{outline:none;background-color:#2b2b2b;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c));background:-webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);box-shadow:inset 0 0 3px #111}.dataTables_wrapper .dataTables_paginate .ellipsis{padding:0 1em}.dataTables_wrapper .dataTables_processing{position:absolute;top:50%;left:50%;width:100%;height:40px;margin-left:-50%;margin-top:-25px;padding-top:20px;text-align:center;font-size:1.2em;background-color:white;background:-webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, 0.9)), color-stop(75%, rgba(255, 255, 255, 0.9)), color-stop(100%, rgba(255, 255, 255, 0)));background:-webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);background:-moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);background:-ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);background:-o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);background:linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%)}.dataTables_wrapper .dataTables_length,.dataTables_wrapper .dataTables_filter,.dataTables_wrapper .dataTables_info,.dataTables_wrapper .dataTables_processing,.dataTables_wrapper .dataTables_paginate{color:#333}.dataTables_wrapper .dataTables_scroll{clear:both}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody{*margin-top:-1px;-webkit-overflow-scrolling:touch}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td{vertical-align:middle}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td>div.dataTables_sizing{height:0;overflow:hidden;margin:0 !important;padding:0 !important}.dataTables_wrapper.no-footer .dataTables_scrollBody{border-bottom:1px solid #111}.dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable,.dataTables_wrapper.no-footer div.dataTables_scrollBody>table{border-bottom:none}.dataTables_wrapper:after{visibility:hidden;display:block;content:"";clear:both;height:0}@media screen and (max-width: 767px){.dataTables_wrapper .dataTables_info,.dataTables_wrapper .dataTables_paginate{float:none;text-align:center}.dataTables_wrapper .dataTables_paginate{margin-top:.5em}}@media screen and (max-width: 640px){.dataTables_wrapper .dataTables_length,.dataTables_wrapper .dataTables_filter{float:none;text-align:center}.dataTables_wrapper .dataTables_filter{margin-top:.5em}} diff --git a/inst/rmarkdown/templates/data/skeleton/template_libs/datatables-1.10.23_sg/datatables-license.txt b/inst/rmarkdown/templates/data/skeleton/template_libs/datatables-1.10.23_sg/datatables-license.txt new file mode 100644 index 0000000..d96c624 --- /dev/null +++ b/inst/rmarkdown/templates/data/skeleton/template_libs/datatables-1.10.23_sg/datatables-license.txt @@ -0,0 +1,11 @@ +DataTables is available under the MIT license. In short, this means that you are free to use DataTables as you wish, including modifying and redistributing the code, as long as the original copyright notice is retained. + +MIT license + +Copyright (C) 2008-2021, SpryMedia Ltd. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/inst/rmarkdown/templates/data/skeleton/template_libs/datatables-1.10.23_sg/images/sort_asc.png b/inst/rmarkdown/templates/data/skeleton/template_libs/datatables-1.10.23_sg/images/sort_asc.png new file mode 100644 index 0000000000000000000000000000000000000000..96a0d8b4940c0a00f1205b7b9db825683771f9b2 GIT binary patch literal 116 zcmeAS@N?(olHy`uVBq!ia0vp^!XV7S0wixl{&NRX)}AhoAr-fh7no-J^PghGn>6L- zpYWgWT|5$50|YtD9)@SIgf8p%k2DEj7Z;l)fK59GeF; OhQZU-&t;ucLK6T?izKE1 literal 0 HcmV?d00001 diff --git a/inst/rmarkdown/templates/data/skeleton/template_libs/datatables-1.10.23_sg/images/sort_asc_disabled.png b/inst/rmarkdown/templates/data/skeleton/template_libs/datatables-1.10.23_sg/images/sort_asc_disabled.png new file mode 100644 index 0000000000000000000000000000000000000000..c0b69cfa5083762a9bdf6cf361e32ece6626eb2e GIT binary patch literal 144 zcmeAS@N?(olHy`uVBq!ia0vp^!XV7S0wixl{&NRX;hrvzAr*|t5-|xPcRKfc{(P=n zf@PENM(yPNn;)O6x42W@Eb_3U2ak>_?#t+zLJ$=$!G t^km{2>;3Ph2z}GPJ(sh5M~3t=hT?5bEXw8qOMzA}c)I$ztaD0e0sy(XH(vk% literal 0 HcmV?d00001 diff --git a/inst/rmarkdown/templates/data/skeleton/template_libs/datatables-1.10.23_sg/images/sort_both.png b/inst/rmarkdown/templates/data/skeleton/template_libs/datatables-1.10.23_sg/images/sort_both.png new file mode 100644 index 0000000000000000000000000000000000000000..4b70f96e4b673a03ed80fddcc4602fe76760059c GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^!XV7S0wixl{&NRXeV#6kAr*{UCv0VGb`WWMJWumQ zgrXgrs;O!90fsk@rQLU~$I6zMmp|V7?R&rmceeH;*)z_vycYFv-{`W)mbvv~MBaVX zKN4Y!H@25**fBj7)aidec@Mv_q_NFEiO0*2_Gp`aw$tgXpXNKEeo6R}&FrQtY;T{v yd)VgC`A?Z1(=@(>yXvUjSpQqC;6w}4UQvxzE$r`ugpLDU#^CAd=d#Wzp$PzQ=1y$@ literal 0 HcmV?d00001 diff --git a/inst/rmarkdown/templates/data/skeleton/template_libs/datatables-1.10.23_sg/images/sort_desc.png b/inst/rmarkdown/templates/data/skeleton/template_libs/datatables-1.10.23_sg/images/sort_desc.png new file mode 100644 index 0000000000000000000000000000000000000000..ae34822eabc4b510800a650fcc4ce51d70241d01 GIT binary patch literal 142 zcmeAS@N?(olHy`uVBq!ia0vp^!XV7S0wixl{&NRXp`I>|Ar*|t5-|xPD_mCn3Hiy_ z>`GK_{Ue{61zb!P)pe3P p8TNB&kk^g)+YuzR1D;={gZtQX>cqHp~=akI*J").css({position:"fixed",top:0,left:-1*k(y).scrollLeft(),height:1, +width:1,overflow:"hidden"}).append(k("
").css({position:"absolute",top:1,left:1,width:100,overflow:"scroll"}).append(k("
").css({width:"100%",height:10}))).appendTo("body"),d=c.children(),e=d.children();b.barWidth=d[0].offsetWidth-d[0].clientWidth;b.bScrollOversize=100===e[0].offsetWidth&&100!==d[0].clientWidth;b.bScrollbarLeft=1!==Math.round(e.offset().left);b.bBounding=c[0].getBoundingClientRect().width?!0:!1;c.remove()}k.extend(a.oBrowser,u.__browser);a.oScroll.iBarWidth=u.__browser.barWidth} +function Bb(a,b,c,d,e,f){var g=!1;if(c!==q){var h=c;g=!0}for(;d!==e;)a.hasOwnProperty(d)&&(h=g?b(h,a[d],d,a):a[d],g=!0,d+=f);return h}function Wa(a,b){var c=u.defaults.column,d=a.aoColumns.length;c=k.extend({},u.models.oColumn,c,{nTh:b?b:z.createElement("th"),sTitle:c.sTitle?c.sTitle:b?b.innerHTML:"",aDataSort:c.aDataSort?c.aDataSort:[d],mData:c.mData?c.mData:d,idx:d});a.aoColumns.push(c);c=a.aoPreSearchCols;c[d]=k.extend({},u.models.oSearch,c[d]);Da(a,d,k(b).data())}function Da(a,b,c){b=a.aoColumns[b]; +var d=a.oClasses,e=k(b.nTh);if(!b.sWidthOrig){b.sWidthOrig=e.attr("width")||null;var f=(e.attr("style")||"").match(/width:\s*(\d+[pxem%]+)/);f&&(b.sWidthOrig=f[1])}c!==q&&null!==c&&(zb(c),O(u.defaults.column,c,!0),c.mDataProp===q||c.mData||(c.mData=c.mDataProp),c.sType&&(b._sManualType=c.sType),c.className&&!c.sClass&&(c.sClass=c.className),c.sClass&&e.addClass(c.sClass),k.extend(b,c),V(b,c,"sWidth","sWidthOrig"),c.iDataSort!==q&&(b.aDataSort=[c.iDataSort]),V(b,c,"aDataSort"));var g=b.mData,h=ia(g), +l=b.mRender?ia(b.mRender):null;c=function(n){return"string"===typeof n&&-1!==n.indexOf("@")};b._bAttrSrc=k.isPlainObject(g)&&(c(g.sort)||c(g.type)||c(g.filter));b._setter=null;b.fnGetData=function(n,m,p){var t=h(n,m,q,p);return l&&m?l(t,m,n,p):t};b.fnSetData=function(n,m,p){return da(g)(n,m,p)};"number"!==typeof g&&(a._rowReadObject=!0);a.oFeatures.bSort||(b.bSortable=!1,e.addClass(d.sSortableNone));a=-1!==k.inArray("asc",b.asSorting);c=-1!==k.inArray("desc",b.asSorting);b.bSortable&&(a||c)?a&&!c? +(b.sSortingClass=d.sSortableAsc,b.sSortingClassJUI=d.sSortJUIAscAllowed):!a&&c?(b.sSortingClass=d.sSortableDesc,b.sSortingClassJUI=d.sSortJUIDescAllowed):(b.sSortingClass=d.sSortable,b.sSortingClassJUI=d.sSortJUI):(b.sSortingClass=d.sSortableNone,b.sSortingClassJUI="")}function ra(a){if(!1!==a.oFeatures.bAutoWidth){var b=a.aoColumns;Xa(a);for(var c=0,d=b.length;cn[m])d(h.length+n[m],l);else if("string"===typeof n[m]){var p=0;for(g=h.length;pb&&a[e]--; -1!=d&&c===q&&a.splice(d,1)}function va(a,b,c,d){var e=a.aoData[b],f,g=function(l,n){for(;l.childNodes.length;)l.removeChild(l.firstChild);l.innerHTML=S(a,b,n,"display")};if("dom"!==c&&(c&&"auto"!==c||"dom"!==e.src)){var h=e.anCells;if(h)if(d!==q)g(h[d],d);else for(c=0,f=h.length;c").appendTo(d));var l=0;for(b=h.length;l=a.fnRecordsDisplay()?0:g,a.iInitDisplayStart=-1);g=a._iDisplayStart;var n=a.fnDisplayEnd();if(a.bDeferLoading)a.bDeferLoading=!1,a.iDraw++,U(a,!1);else if(!h)a.iDraw++;else if(!a.bDestroying&&!Fb(a))return;if(0!==l.length)for(f=h?a.aoData.length:n,h=h?0:g;h",{"class":e?d[0]:""}).append(k("",{valign:"top",colSpan:na(a),"class":a.oClasses.sRowEmpty}).html(c))[0];I(a,"aoHeaderCallback","header",[k(a.nTHead).children("tr")[0], +bb(a),g,n,l]);I(a,"aoFooterCallback","footer",[k(a.nTFoot).children("tr")[0],bb(a),g,n,l]);d=k(a.nTBody);d.children().detach();d.append(k(b));I(a,"aoDrawCallback","draw",[a]);a.bSorted=!1;a.bFiltered=!1;a.bDrawing=!1}}function ja(a,b){var c=a.oFeatures,d=c.bFilter;c.bSort&&Gb(a);d?ya(a,a.oPreviousSearch):a.aiDisplay=a.aiDisplayMaster.slice();!0!==b&&(a._iDisplayStart=0);a._drawHold=b;fa(a);a._drawHold=!1}function Hb(a){var b=a.oClasses,c=k(a.nTable);c=k("
").insertBefore(c);var d=a.oFeatures, +e=k("
",{id:a.sTableId+"_wrapper","class":b.sWrapper+(a.nTFoot?"":" "+b.sNoFooter)});a.nHolding=c[0];a.nTableWrapper=e[0];a.nTableReinsertBefore=a.nTable.nextSibling;for(var f=a.sDom.split(""),g,h,l,n,m,p,t=0;t")[0];n=f[t+1];if("'"==n||'"'==n){m="";for(p=2;f[t+p]!=n;)m+=f[t+p],p++;"H"==m?m=b.sJUIHeader:"F"==m&&(m=b.sJUIFooter);-1!=m.indexOf(".")?(n=m.split("."),l.id=n[0].substr(1,n[0].length-1),l.className=n[1]):"#"==m.charAt(0)?l.id=m.substr(1, +m.length-1):l.className=m;t+=p}e.append(l);e=k(l)}else if(">"==h)e=e.parent();else if("l"==h&&d.bPaginate&&d.bLengthChange)g=Ib(a);else if("f"==h&&d.bFilter)g=Jb(a);else if("r"==h&&d.bProcessing)g=Kb(a);else if("t"==h)g=Lb(a);else if("i"==h&&d.bInfo)g=Mb(a);else if("p"==h&&d.bPaginate)g=Nb(a);else if(0!==u.ext.feature.length)for(l=u.ext.feature,p=0,n=l.length;p',h=d.sSearch;h=h.match(/_INPUT_/)?h.replace("_INPUT_",g):h+g;b=k("
",{id:f.f?null:c+"_filter","class":b.sFilter}).append(k("
").addClass(b.sLength);a.aanFeatures.l||(l[0].id=c+"_length");l.children().append(a.oLanguage.sLengthMenu.replace("_MENU_",e[0].outerHTML));k("select",l).val(a._iDisplayLength).on("change.DT",function(n){ib(a,k(this).val());fa(a)});k(a.nTable).on("length.dt.DT",function(n,m,p){a===m&&k("select",l).val(p)});return l[0]}function Nb(a){var b=a.sPaginationType,c=u.ext.pager[b],d="function"===typeof c,e=function(g){fa(g)};b=k("
").addClass(a.oClasses.sPaging+b)[0]; +var f=a.aanFeatures;d||c.fnInit(a,b,e);f.p||(b.id=a.sTableId+"_paginate",a.aoDrawCallback.push({fn:function(g){if(d){var h=g._iDisplayStart,l=g._iDisplayLength,n=g.fnRecordsDisplay(),m=-1===l;h=m?0:Math.ceil(h/l);l=m?1:Math.ceil(n/l);n=c(h,l);var p;m=0;for(p=f.p.length;mf&& +(d=0)):"first"==b?d=0:"previous"==b?(d=0<=e?d-e:0,0>d&&(d=0)):"next"==b?d+e",{id:a.aanFeatures.r?null:a.sTableId+"_processing","class":a.oClasses.sProcessing}).html(a.oLanguage.sProcessing).insertBefore(a.nTable)[0]}function U(a,b){a.oFeatures.bProcessing&&k(a.aanFeatures.r).css("display",b?"block":"none"); +I(a,null,"processing",[a,b])}function Lb(a){var b=k(a.nTable);b.attr("role","grid");var c=a.oScroll;if(""===c.sX&&""===c.sY)return a.nTable;var d=c.sX,e=c.sY,f=a.oClasses,g=b.children("caption"),h=g.length?g[0]._captionSide:null,l=k(b[0].cloneNode(!1)),n=k(b[0].cloneNode(!1)),m=b.children("tfoot");m.length||(m=null);l=k("
",{"class":f.sScrollWrapper}).append(k("
",{"class":f.sScrollHead}).css({overflow:"hidden",position:"relative",border:0,width:d?d?K(d):null:"100%"}).append(k("
", +{"class":f.sScrollHeadInner}).css({"box-sizing":"content-box",width:c.sXInner||"100%"}).append(l.removeAttr("id").css("margin-left",0).append("top"===h?g:null).append(b.children("thead"))))).append(k("
",{"class":f.sScrollBody}).css({position:"relative",overflow:"auto",width:d?K(d):null}).append(b));m&&l.append(k("
",{"class":f.sScrollFoot}).css({overflow:"hidden",border:0,width:d?d?K(d):null:"100%"}).append(k("
",{"class":f.sScrollFootInner}).append(n.removeAttr("id").css("margin-left", +0).append("bottom"===h?g:null).append(b.children("tfoot")))));b=l.children();var p=b[0];f=b[1];var t=m?b[2]:null;if(d)k(f).on("scroll.DT",function(v){v=this.scrollLeft;p.scrollLeft=v;m&&(t.scrollLeft=v)});k(f).css("max-height",e);c.bCollapse||k(f).css("height",e);a.nScrollHead=p;a.nScrollBody=f;a.nScrollFoot=t;a.aoDrawCallback.push({fn:Ea,sName:"scrolling"});return l[0]}function Ea(a){var b=a.oScroll,c=b.sX,d=b.sXInner,e=b.sY;b=b.iBarWidth;var f=k(a.nScrollHead),g=f[0].style,h=f.children("div"),l= +h[0].style,n=h.children("table");h=a.nScrollBody;var m=k(h),p=h.style,t=k(a.nScrollFoot).children("div"),v=t.children("table"),x=k(a.nTHead),r=k(a.nTable),A=r[0],E=A.style,H=a.nTFoot?k(a.nTFoot):null,W=a.oBrowser,M=W.bScrollOversize,C=T(a.aoColumns,"nTh"),B=[],ba=[],X=[],lb=[],Aa,Yb=function(F){F=F.style;F.paddingTop="0";F.paddingBottom="0";F.borderTopWidth="0";F.borderBottomWidth="0";F.height=0};var ha=h.scrollHeight>h.clientHeight;if(a.scrollBarVis!==ha&&a.scrollBarVis!==q)a.scrollBarVis=ha,ra(a); +else{a.scrollBarVis=ha;r.children("thead, tfoot").remove();if(H){var ka=H.clone().prependTo(r);var la=H.find("tr");ka=ka.find("tr")}var mb=x.clone().prependTo(r);x=x.find("tr");ha=mb.find("tr");mb.find("th, td").removeAttr("tabindex");c||(p.width="100%",f[0].style.width="100%");k.each(Ka(a,mb),function(F,Y){Aa=sa(a,F);Y.style.width=a.aoColumns[Aa].sWidth});H&&Z(function(F){F.style.width=""},ka);f=r.outerWidth();""===c?(E.width="100%",M&&(r.find("tbody").height()>h.offsetHeight||"scroll"==m.css("overflow-y"))&& +(E.width=K(r.outerWidth()-b)),f=r.outerWidth()):""!==d&&(E.width=K(d),f=r.outerWidth());Z(Yb,ha);Z(function(F){X.push(F.innerHTML);B.push(K(k(F).css("width")))},ha);Z(function(F,Y){-1!==k.inArray(F,C)&&(F.style.width=B[Y])},x);k(ha).height(0);H&&(Z(Yb,ka),Z(function(F){lb.push(F.innerHTML);ba.push(K(k(F).css("width")))},ka),Z(function(F,Y){F.style.width=ba[Y]},la),k(ka).height(0));Z(function(F,Y){F.innerHTML='
'+X[Y]+"
";F.childNodes[0].style.height="0";F.childNodes[0].style.overflow= +"hidden";F.style.width=B[Y]},ha);H&&Z(function(F,Y){F.innerHTML='
'+lb[Y]+"
";F.childNodes[0].style.height="0";F.childNodes[0].style.overflow="hidden";F.style.width=ba[Y]},ka);r.outerWidth()h.offsetHeight||"scroll"==m.css("overflow-y")?f+b:f,M&&(h.scrollHeight>h.offsetHeight||"scroll"==m.css("overflow-y"))&&(E.width=K(la-b)),""!==c&&""===d||aa(a,1,"Possible column misalignment",6)):la="100%";p.width=K(la);g.width=K(la);H&&(a.nScrollFoot.style.width= +K(la));!e&&M&&(p.height=K(A.offsetHeight+b));c=r.outerWidth();n[0].style.width=K(c);l.width=K(c);d=r.height()>h.clientHeight||"scroll"==m.css("overflow-y");e="padding"+(W.bScrollbarLeft?"Left":"Right");l[e]=d?b+"px":"0px";H&&(v[0].style.width=K(c),t[0].style.width=K(c),t[0].style[e]=d?b+"px":"0px");r.children("colgroup").insertBefore(r.children("thead"));m.trigger("scroll");!a.bSorted&&!a.bFiltered||a._drawHold||(h.scrollTop=0)}}function Z(a,b,c){for(var d=0,e=0,f=b.length,g,h;e").appendTo(h.find("tbody"));h.find("thead, tfoot").remove();h.append(k(a.nTHead).clone()).append(k(a.nTFoot).clone());h.find("tfoot th, tfoot td").css("width","");n=Ka(a,h.find("thead")[0]);for(v=0;v").css({width:r.sWidthOrig, +margin:0,padding:0,border:0,height:1}));if(a.aoData.length)for(v=0;v").css(f||e?{position:"absolute",top:0,left:0,height:1,right:0,overflow:"hidden"}:{}).append(h).appendTo(p);f&&g?h.width(g):f?(h.css("width","auto"),h.removeAttr("width"),h.width()").css("width",K(a)).appendTo(b||z.body);b=a[0].offsetWidth;a.remove();return b}function $b(a,b){var c=ac(a,b);if(0>c)return null;var d=a.aoData[c];return d.nTr?d.anCells[b]: +k("").html(S(a,c,b,"display"))[0]}function ac(a,b){for(var c,d=-1,e=-1,f=0,g=a.aoData.length;fd&&(d=c.length,e=f);return e}function K(a){return null===a?"0px":"number"==typeof a?0>a?"0px":a+"px":a.match(/\d$/)?a+"px":a}function pa(a){var b=[],c=a.aoColumns;var d=a.aaSortingFixed;var e=k.isPlainObject(d);var f=[];var g=function(m){m.length&&!Array.isArray(m[0])?f.push(m):k.merge(f,m)};Array.isArray(d)&&g(d); +e&&d.pre&&g(d.pre);g(a.aaSorting);e&&d.post&&g(d.post);for(a=0;aH?1:0;if(0!==E)return"asc"===A.dir?E:-E}E=c[m];H=c[p];return EH?1:0}):g.sort(function(m,p){var t,v=h.length,x=e[m]._aSortData,r=e[p]._aSortData;for(t=0;tH?1:0})}a.bSorted=!0}function cc(a){var b=a.aoColumns,c=pa(a);a=a.oLanguage.oAria;for(var d=0,e=b.length;d/g,"");var l=f.nTh;l.removeAttribute("aria-sort");f.bSortable&&(0e?e+1:3))}e=0;for(f=d.length;ee?e+1:3))}a.aLastSort= +d}function bc(a,b){var c=a.aoColumns[b],d=u.ext.order[c.sSortDataType],e;d&&(e=d.call(a.oInstance,a,b,ta(a,b)));for(var f,g=u.ext.type.order[c.sType+"-pre"],h=0,l=a.aoData.length;h=f.length?[0,m[1]]:m)}));h.search!==q&&k.extend(a.oPreviousSearch,Vb(h.search));if(h.columns)for(d=0,e=h.columns.length;d=c&&(b=c-d);b-=b%d;if(-1===d||0>b)b=0;a._iDisplayStart=b}function eb(a,b){a=a.renderer;var c=u.ext.renderer[b];return k.isPlainObject(a)&&a[b]?c[a[b]]||c._:"string"===typeof a?c[a]|| +c._:c._}function P(a){return a.oFeatures.bServerSide?"ssp":a.ajax||a.sAjaxSource?"ajax":"dom"}function Ba(a,b){var c=ec.numbers_length,d=Math.floor(c/2);b<=c?a=qa(0,b):a<=d?(a=qa(0,c-2),a.push("ellipsis"),a.push(b-1)):(a>=b-1-d?a=qa(b-(c-2),b):(a=qa(a-d+2,a+d-1),a.push("ellipsis"),a.push(b-1)),a.splice(0,0,"ellipsis"),a.splice(0,0,0));a.DT_el="span";return a}function Va(a){k.each({num:function(b){return Sa(b,a)},"num-fmt":function(b){return Sa(b,a,qb)},"html-num":function(b){return Sa(b,a,Ta)},"html-num-fmt":function(b){return Sa(b, +a,Ta,qb)}},function(b,c){L.type.order[b+a+"-pre"]=c;b.match(/^html\-/)&&(L.type.search[b+a]=L.type.search.html)})}function fc(a){return function(){var b=[Ra(this[u.ext.iApiIndex])].concat(Array.prototype.slice.call(arguments));return u.ext.internal[a].apply(this,b)}}var u=function(a){this.$=function(f,g){return this.api(!0).$(f,g)};this._=function(f,g){return this.api(!0).rows(f,g).data()};this.api=function(f){return f?new D(Ra(this[L.iApiIndex])):new D(this)};this.fnAddData=function(f,g){var h=this.api(!0); +f=Array.isArray(f)&&(Array.isArray(f[0])||k.isPlainObject(f[0]))?h.rows.add(f):h.row.add(f);(g===q||g)&&h.draw();return f.flatten().toArray()};this.fnAdjustColumnSizing=function(f){var g=this.api(!0).columns.adjust(),h=g.settings()[0],l=h.oScroll;f===q||f?g.draw(!1):(""!==l.sX||""!==l.sY)&&Ea(h)};this.fnClearTable=function(f){var g=this.api(!0).clear();(f===q||f)&&g.draw()};this.fnClose=function(f){this.api(!0).row(f).child.hide()};this.fnDeleteRow=function(f,g,h){var l=this.api(!0);f=l.rows(f);var n= +f.settings()[0],m=n.aoData[f[0][0]];f.remove();g&&g.call(this,n,m);(h===q||h)&&l.draw();return m};this.fnDestroy=function(f){this.api(!0).destroy(f)};this.fnDraw=function(f){this.api(!0).draw(f)};this.fnFilter=function(f,g,h,l,n,m){n=this.api(!0);null===g||g===q?n.search(f,h,l,m):n.column(g).search(f,h,l,m);n.draw()};this.fnGetData=function(f,g){var h=this.api(!0);if(f!==q){var l=f.nodeName?f.nodeName.toLowerCase():"";return g!==q||"td"==l||"th"==l?h.cell(f,g).data():h.row(f).data()||null}return h.data().toArray()}; +this.fnGetNodes=function(f){var g=this.api(!0);return f!==q?g.row(f).node():g.rows().nodes().flatten().toArray()};this.fnGetPosition=function(f){var g=this.api(!0),h=f.nodeName.toUpperCase();return"TR"==h?g.row(f).index():"TD"==h||"TH"==h?(f=g.cell(f).index(),[f.row,f.columnVisible,f.column]):null};this.fnIsOpen=function(f){return this.api(!0).row(f).child.isShown()};this.fnOpen=function(f,g,h){return this.api(!0).row(f).child(g,h).show().child()[0]};this.fnPageChange=function(f,g){f=this.api(!0).page(f); +(g===q||g)&&f.draw(!1)};this.fnSetColumnVis=function(f,g,h){f=this.api(!0).column(f).visible(g);(h===q||h)&&f.columns.adjust().draw()};this.fnSettings=function(){return Ra(this[L.iApiIndex])};this.fnSort=function(f){this.api(!0).order(f).draw()};this.fnSortListener=function(f,g,h){this.api(!0).order.listener(f,g,h)};this.fnUpdate=function(f,g,h,l,n){var m=this.api(!0);h===q||null===h?m.row(g).data(f):m.cell(g,h).data(f);(n===q||n)&&m.columns.adjust();(l===q||l)&&m.draw();return 0};this.fnVersionCheck= +L.fnVersionCheck;var b=this,c=a===q,d=this.length;c&&(a={});this.oApi=this.internal=L.internal;for(var e in u.ext.internal)e&&(this[e]=fc(e));this.each(function(){var f={},g=1").appendTo(p));r.nTHead=B[0]; +B=p.children("tbody");0===B.length&&(B=k("").appendTo(p));r.nTBody=B[0];B=p.children("tfoot");0===B.length&&0").appendTo(p));0===B.length||0===B.children().length?p.addClass(A.sNoFooter):0/g,tc=/^\d{2,4}[\.\/\-]\d{1,2}[\.\/\-]\d{1,2}([T ]{1}\d{1,2}[:\.]\d{2}([\.:]\d{2})?)?$/,uc=/(\/|\.|\*|\+|\?|\||\(|\)|\[|\]|\{|\}|\\|\$|\^|\-)/g,qb=/['\u00A0,$£€¥%\u2009\u202F\u20BD\u20a9\u20BArfkɃΞ]/gi,ca=function(a){return a&&!0!==a&&"-"!==a?!1:!0},hc=function(a){var b=parseInt(a,10);return!isNaN(b)&&isFinite(a)?b:null},ic=function(a,b){rb[b]|| +(rb[b]=new RegExp(hb(b),"g"));return"string"===typeof a&&"."!==b?a.replace(/\./g,"").replace(rb[b],"."):a},sb=function(a,b,c){var d="string"===typeof a;if(ca(a))return!0;b&&d&&(a=ic(a,b));c&&d&&(a=a.replace(qb,""));return!isNaN(parseFloat(a))&&isFinite(a)},jc=function(a,b,c){return ca(a)?!0:ca(a)||"string"===typeof a?sb(a.replace(Ta,""),b,c)?!0:null:null},T=function(a,b,c){var d=[],e=0,f=a.length;if(c!==q)for(;ea.length)){var b=a.slice().sort();for(var c=b[0],d=1,e=b.length;d")[0],rc=Oa.textContent!==q,sc=/<.*?>/g,fb=u.util.throttle,mc=[],N=Array.prototype,vc=function(a){var b,c=u.settings,d=k.map(c,function(f,g){return f.nTable});if(a){if(a.nTable&&a.oApi)return[a];if(a.nodeName&&"table"===a.nodeName.toLowerCase()){var e= +k.inArray(a,d);return-1!==e?[c[e]]:null}if(a&&"function"===typeof a.settings)return a.settings().toArray();"string"===typeof a?b=k(a):a instanceof k&&(b=a)}else return[];if(b)return b.map(function(f){e=k.inArray(this,d);return-1!==e?c[e]:null}).toArray()};var D=function(a,b){if(!(this instanceof D))return new D(a,b);var c=[],d=function(g){(g=vc(g))&&c.push.apply(c,g)};if(Array.isArray(a))for(var e=0,f=a.length;ea?new D(b[a],this[a]):null},filter:function(a){var b=[];if(N.filter)b=N.filter.call(this,a,this);else for(var c=0,d=this.length;c").addClass(h),k("td",l).addClass(h).html(g)[0].colSpan=na(a),e.push(l[0]))};f(c,d);b._details&&b._details.detach();b._details=k(e);b._detailsShow&& +b._details.insertAfter(b.nTr)},wb=function(a,b){var c=a.context;c.length&&(a=c[0].aoData[b!==q?b:a[0]])&&a._details&&(a._details.remove(),a._detailsShow=q,a._details=q)},pc=function(a,b){var c=a.context;c.length&&a.length&&(a=c[0].aoData[a[0]],a._details&&((a._detailsShow=b)?a._details.insertAfter(a.nTr):a._details.detach(),yc(c[0])))},yc=function(a){var b=new D(a),c=a.aoData;b.off("draw.dt.DT_details column-visibility.dt.DT_details destroy.dt.DT_details");0h){var m=k.map(d,function(p,t){return p.bVisible?t:null});return[m[m.length+h]]}return[sa(a,h)];case "name":return k.map(e,function(p,t){return p===n[1]?t:null});default:return[]}if(g.nodeName&&g._DT_CellIndex)return[g._DT_CellIndex.column];h=k(f).filter(g).map(function(){return k.inArray(this,f)}).toArray();if(h.length||!g.nodeName)return h;h=k(g).closest("*[data-dt-column]");return h.length?[h.data("dt-column")]:[]},a,c)};w("columns()",function(a,b){a===q?a="":k.isPlainObject(a)&&(b=a, +a="");b=ub(b);var c=this.iterator("table",function(d){return Ac(d,a,b)},1);c.selector.cols=a;c.selector.opts=b;return c});J("columns().header()","column().header()",function(a,b){return this.iterator("column",function(c,d){return c.aoColumns[d].nTh},1)});J("columns().footer()","column().footer()",function(a,b){return this.iterator("column",function(c,d){return c.aoColumns[d].nTf},1)});J("columns().data()","column().data()",function(){return this.iterator("column-rows",qc,1)});J("columns().dataSrc()", +"column().dataSrc()",function(){return this.iterator("column",function(a,b){return a.aoColumns[b].mData},1)});J("columns().cache()","column().cache()",function(a){return this.iterator("column-rows",function(b,c,d,e,f){return Ca(b.aoData,f,"search"===a?"_aFilterData":"_aSortData",c)},1)});J("columns().nodes()","column().nodes()",function(){return this.iterator("column-rows",function(a,b,c,d,e){return Ca(a.aoData,e,"anCells",b)},1)});J("columns().visible()","column().visible()",function(a,b){var c= +this,d=this.iterator("column",function(e,f){if(a===q)return e.aoColumns[f].bVisible;var g=e.aoColumns,h=g[f],l=e.aoData,n;if(a!==q&&h.bVisible!==a){if(a){var m=k.inArray(!0,T(g,"bVisible"),f+1);g=0;for(n=l.length;gd;return!0};u.isDataTable=u.fnIsDataTable=function(a){var b=k(a).get(0),c=!1;if(a instanceof u.Api)return!0;k.each(u.settings,function(d,e){d=e.nScrollHead?k("table",e.nScrollHead)[0]:null;var f=e.nScrollFoot?k("table",e.nScrollFoot)[0]:null;if(e.nTable===b||d===b||f===b)c=!0});return c};u.tables=u.fnTables=function(a){var b= +!1;k.isPlainObject(a)&&(b=a.api,a=a.visible);var c=k.map(u.settings,function(d){if(!a||a&&k(d.nTable).is(":visible"))return d.nTable});return b?new D(c):c};u.camelToHungarian=O;w("$()",function(a,b){b=this.rows(b).nodes();b=k(b);return k([].concat(b.filter(a).toArray(),b.find(a).toArray()))});k.each(["on","one","off"],function(a,b){w(b+"()",function(){var c=Array.prototype.slice.call(arguments);c[0]=k.map(c[0].split(/\s/),function(e){return e.match(/\.dt\b/)?e:e+".dt"}).join(" ");var d=k(this.tables().nodes()); +d[b].apply(d,c);return this})});w("clear()",function(){return this.iterator("table",function(a){Ha(a)})});w("settings()",function(){return new D(this.context,this.context)});w("init()",function(){var a=this.context;return a.length?a[0].oInit:null});w("data()",function(){return this.iterator("table",function(a){return T(a.aoData,"_aData")}).flatten()});w("destroy()",function(a){a=a||!1;return this.iterator("table",function(b){var c=b.nTableWrapper.parentNode,d=b.oClasses,e=b.nTable,f=b.nTBody,g=b.nTHead, +h=b.nTFoot,l=k(e);f=k(f);var n=k(b.nTableWrapper),m=k.map(b.aoData,function(t){return t.nTr}),p;b.bDestroying=!0;I(b,"aoDestroyCallback","destroy",[b]);a||(new D(b)).columns().visible(!0);n.off(".DT").find(":not(tbody *)").off(".DT");k(y).off(".DT-"+b.sInstance);e!=g.parentNode&&(l.children("thead").detach(),l.append(g));h&&e!=h.parentNode&&(l.children("tfoot").detach(),l.append(h));b.aaSorting=[];b.aaSortingFixed=[];Pa(b);k(m).removeClass(b.asStripeClasses.join(" "));k("th, td",g).removeClass(d.sSortable+ +" "+d.sSortableAsc+" "+d.sSortableDesc+" "+d.sSortableNone);f.children().detach();f.append(m);g=a?"remove":"detach";l[g]();n[g]();!a&&c&&(c.insertBefore(e,b.nTableReinsertBefore),l.css("width",b.sDestroyWidth).removeClass(d.sTable),(p=b.asDestroyStripes.length)&&f.children().each(function(t){k(this).addClass(b.asDestroyStripes[t%p])}));c=k.inArray(b,u.settings);-1!==c&&u.settings.splice(c,1)})});k.each(["column","row","cell"],function(a,b){w(b+"s().every()",function(c){var d=this.selector.opts,e= +this;return this.iterator(b,function(f,g,h,l,n){c.call(e[b](g,"cell"===b?h:d,"cell"===b?d:q),g,h,l,n)})})});w("i18n()",function(a,b,c){var d=this.context[0];a=ia(a)(d.oLanguage);a===q&&(a=b);c!==q&&k.isPlainObject(a)&&(a=a[c]!==q?a[c]:a._);return a.replace("%d",c)});u.version="1.10.23";u.settings=[];u.models={};u.models.oSearch={bCaseInsensitive:!0,sSearch:"",bRegex:!1,bSmart:!0};u.models.oRow={nTr:null,anCells:null,_aData:[],_aSortData:null,_aFilterData:null,_sFilterRow:null,_sRowStripe:"",src:null, +idx:-1};u.models.oColumn={idx:null,aDataSort:null,asSorting:null,bSearchable:null,bSortable:null,bVisible:null,_sManualType:null,_bAttrSrc:!1,fnCreatedCell:null,fnGetData:null,fnSetData:null,mData:null,mRender:null,nTh:null,nTf:null,sClass:null,sContentPadding:null,sDefaultContent:null,sName:null,sSortDataType:"std",sSortingClass:null,sSortingClassJUI:null,sTitle:null,sType:null,sWidth:null,sWidthOrig:null};u.defaults={aaData:null,aaSorting:[[0,"asc"]],aaSortingFixed:[],ajax:null,aLengthMenu:[10, +25,50,100],aoColumns:null,aoColumnDefs:null,aoSearchCols:[],asStripeClasses:null,bAutoWidth:!0,bDeferRender:!1,bDestroy:!1,bFilter:!0,bInfo:!0,bLengthChange:!0,bPaginate:!0,bProcessing:!1,bRetrieve:!1,bScrollCollapse:!1,bServerSide:!1,bSort:!0,bSortMulti:!0,bSortCellsTop:!1,bSortClasses:!0,bStateSave:!1,fnCreatedRow:null,fnDrawCallback:null,fnFooterCallback:null,fnFormatNumber:function(a){return a.toString().replace(/\B(?=(\d{3})+(?!\d))/g,this.oLanguage.sThousands)},fnHeaderCallback:null,fnInfoCallback:null, +fnInitComplete:null,fnPreDrawCallback:null,fnRowCallback:null,fnServerData:null,fnServerParams:null,fnStateLoadCallback:function(a){try{return JSON.parse((-1===a.iStateDuration?sessionStorage:localStorage).getItem("DataTables_"+a.sInstance+"_"+location.pathname))}catch(b){return{}}},fnStateLoadParams:null,fnStateLoaded:null,fnStateSaveCallback:function(a,b){try{(-1===a.iStateDuration?sessionStorage:localStorage).setItem("DataTables_"+a.sInstance+"_"+location.pathname,JSON.stringify(b))}catch(c){}}, +fnStateSaveParams:null,iStateDuration:7200,iDeferLoading:null,iDisplayLength:10,iDisplayStart:0,iTabIndex:0,oClasses:{},oLanguage:{oAria:{sSortAscending:": activate to sort column ascending",sSortDescending:": activate to sort column descending"},oPaginate:{sFirst:"First",sLast:"Last",sNext:"Next",sPrevious:"Previous"},sEmptyTable:"No data available in table",sInfo:"Showing _START_ to _END_ of _TOTAL_ entries",sInfoEmpty:"Showing 0 to 0 of 0 entries",sInfoFiltered:"(filtered from _MAX_ total entries)", +sInfoPostFix:"",sDecimal:"",sThousands:",",sLengthMenu:"Show _MENU_ entries",sLoadingRecords:"Loading...",sProcessing:"Processing...",sSearch:"Search:",sSearchPlaceholder:"",sUrl:"",sZeroRecords:"No matching records found"},oSearch:k.extend({},u.models.oSearch),sAjaxDataProp:"data",sAjaxSource:null,sDom:"lfrtip",searchDelay:null,sPaginationType:"simple_numbers",sScrollX:"",sScrollXInner:"",sScrollY:"",sServerMethod:"GET",renderer:null,rowId:"DT_RowId"};G(u.defaults);u.defaults.column={aDataSort:null, +iDataSort:-1,asSorting:["asc","desc"],bSearchable:!0,bSortable:!0,bVisible:!0,fnCreatedCell:null,mData:null,mRender:null,sCellType:"td",sClass:"",sContentPadding:"",sDefaultContent:null,sName:"",sSortDataType:"std",sTitle:null,sType:null,sWidth:null};G(u.defaults.column);u.models.oSettings={oFeatures:{bAutoWidth:null,bDeferRender:null,bFilter:null,bInfo:null,bLengthChange:null,bPaginate:null,bProcessing:null,bServerSide:null,bSort:null,bSortMulti:null,bSortClasses:null,bStateSave:null},oScroll:{bCollapse:null, +iBarWidth:0,sX:null,sXInner:null,sY:null},oLanguage:{fnInfoCallback:null},oBrowser:{bScrollOversize:!1,bScrollbarLeft:!1,bBounding:!1,barWidth:0},ajax:null,aanFeatures:[],aoData:[],aiDisplay:[],aiDisplayMaster:[],aIds:{},aoColumns:[],aoHeader:[],aoFooter:[],oPreviousSearch:{},aoPreSearchCols:[],aaSorting:null,aaSortingFixed:[],asStripeClasses:null,asDestroyStripes:[],sDestroyWidth:0,aoRowCallback:[],aoHeaderCallback:[],aoFooterCallback:[],aoDrawCallback:[],aoRowCreatedCallback:[],aoPreDrawCallback:[], +aoInitComplete:[],aoStateSaveParams:[],aoStateLoadParams:[],aoStateLoaded:[],sTableId:"",nTable:null,nTHead:null,nTFoot:null,nTBody:null,nTableWrapper:null,bDeferLoading:!1,bInitialised:!1,aoOpenRows:[],sDom:null,searchDelay:null,sPaginationType:"two_button",iStateDuration:0,aoStateSave:[],aoStateLoad:[],oSavedState:null,oLoadedState:null,sAjaxSource:null,sAjaxDataProp:null,bAjaxDataGet:!0,jqXHR:null,json:q,oAjaxData:q,fnServerData:null,aoServerParams:[],sServerMethod:null,fnFormatNumber:null,aLengthMenu:null, +iDraw:0,bDrawing:!1,iDrawError:-1,_iDisplayLength:10,_iDisplayStart:0,_iRecordsTotal:0,_iRecordsDisplay:0,oClasses:{},bFiltered:!1,bSorted:!1,bSortCellsTop:null,oInit:null,aoDestroyCallback:[],fnRecordsTotal:function(){return"ssp"==P(this)?1*this._iRecordsTotal:this.aiDisplayMaster.length},fnRecordsDisplay:function(){return"ssp"==P(this)?1*this._iRecordsDisplay:this.aiDisplay.length},fnDisplayEnd:function(){var a=this._iDisplayLength,b=this._iDisplayStart,c=b+a,d=this.aiDisplay.length,e=this.oFeatures, +f=e.bPaginate;return e.bServerSide?!1===f||-1===a?b+d:Math.min(b+a,this._iRecordsDisplay):!f||c>d||-1===a?d:c},oInstance:null,sInstance:null,iTabIndex:0,nScrollHead:null,nScrollFoot:null,aLastSort:[],oPlugins:{},rowIdFn:null,rowId:null};u.ext=L={buttons:{},classes:{},builder:"-source-",errMode:"alert",feature:[],search:[],selector:{cell:[],column:[],row:[]},internal:{},legacy:{ajax:null},pager:{},renderer:{pageButton:{},header:{}},order:{},type:{detect:[],search:{},order:{}},_unique:0,fnVersionCheck:u.fnVersionCheck, +iApiIndex:0,oJUIClasses:{},sVersion:u.version};k.extend(L,{afnFiltering:L.search,aTypes:L.type.detect,ofnSearch:L.type.search,oSort:L.type.order,afnSortData:L.order,aoFeatures:L.feature,oApi:L.internal,oStdClasses:L.classes,oPagination:L.pager});k.extend(u.ext.classes,{sTable:"dataTable",sNoFooter:"no-footer",sPageButton:"paginate_button",sPageButtonActive:"current",sPageButtonDisabled:"disabled",sStripeOdd:"odd",sStripeEven:"even",sRowEmpty:"dataTables_empty",sWrapper:"dataTables_wrapper",sFilter:"dataTables_filter", +sInfo:"dataTables_info",sPaging:"dataTables_paginate paging_",sLength:"dataTables_length",sProcessing:"dataTables_processing",sSortAsc:"sorting_asc",sSortDesc:"sorting_desc",sSortable:"sorting",sSortableAsc:"sorting_asc_disabled",sSortableDesc:"sorting_desc_disabled",sSortableNone:"sorting_disabled",sSortColumn:"sorting_",sFilterInput:"",sLengthSelect:"",sScrollWrapper:"dataTables_scroll",sScrollHead:"dataTables_scrollHead",sScrollHeadInner:"dataTables_scrollHeadInner",sScrollBody:"dataTables_scrollBody", +sScrollFoot:"dataTables_scrollFoot",sScrollFootInner:"dataTables_scrollFootInner",sHeaderTH:"",sFooterTH:"",sSortJUIAsc:"",sSortJUIDesc:"",sSortJUI:"",sSortJUIAscAllowed:"",sSortJUIDescAllowed:"",sSortJUIWrapper:"",sSortIcon:"",sJUIHeader:"",sJUIFooter:""});var ec=u.ext.pager;k.extend(ec,{simple:function(a,b){return["previous","next"]},full:function(a,b){return["first","previous","next","last"]},numbers:function(a,b){return[Ba(a,b)]},simple_numbers:function(a,b){return["previous",Ba(a,b),"next"]}, +full_numbers:function(a,b){return["first","previous",Ba(a,b),"next","last"]},first_last_numbers:function(a,b){return["first",Ba(a,b),"last"]},_numbers:Ba,numbers_length:7});k.extend(!0,u.ext.renderer,{pageButton:{_:function(a,b,c,d,e,f){var g=a.oClasses,h=a.oLanguage.oPaginate,l=a.oLanguage.oAria.paginate||{},n,m,p=0,t=function(x,r){var A,E=g.sPageButtonDisabled,H=function(B){kb(a,B.data.action,!0)};var W=0;for(A=r.length;W").appendTo(x); +t(C,M)}else{n=null;m=M;C=a.iTabIndex;switch(M){case "ellipsis":x.append('');break;case "first":n=h.sFirst;0===e&&(C=-1,m+=" "+E);break;case "previous":n=h.sPrevious;0===e&&(C=-1,m+=" "+E);break;case "next":n=h.sNext;if(0===f||e===f-1)C=-1,m+=" "+E;break;case "last":n=h.sLast;if(0===f||e===f-1)C=-1,m+=" "+E;break;default:n=a.fnFormatNumber(M+1),m=e===M?g.sPageButtonActive:""}null!==n&&(C=k("",{"class":g.sPageButton+" "+m,"aria-controls":a.sTableId,"aria-label":l[M], +"data-dt-idx":p,tabindex:C,id:0===c&&"string"===typeof M?a.sTableId+"_"+M:null}).html(n).appendTo(x),ob(C,{action:M},H),p++)}}};try{var v=k(b).find(z.activeElement).data("dt-idx")}catch(x){}t(k(b).empty(),d);v!==q&&k(b).find("[data-dt-idx="+v+"]").trigger("focus")}}});k.extend(u.ext.type.detect,[function(a,b){b=b.oLanguage.sDecimal;return sb(a,b)?"num"+b:null},function(a,b){if(a&&!(a instanceof Date)&&!tc.test(a))return null;b=Date.parse(a);return null!==b&&!isNaN(b)||ca(a)?"date":null},function(a, +b){b=b.oLanguage.sDecimal;return sb(a,b,!0)?"num-fmt"+b:null},function(a,b){b=b.oLanguage.sDecimal;return jc(a,b)?"html-num"+b:null},function(a,b){b=b.oLanguage.sDecimal;return jc(a,b,!0)?"html-num-fmt"+b:null},function(a,b){return ca(a)||"string"===typeof a&&-1!==a.indexOf("<")?"html":null}]);k.extend(u.ext.type.search,{html:function(a){return ca(a)?a:"string"===typeof a?a.replace(gc," ").replace(Ta,""):""},string:function(a){return ca(a)?a:"string"===typeof a?a.replace(gc," "):a}});var Sa=function(a, +b,c,d){if(0!==a&&(!a||"-"===a))return-Infinity;b&&(a=ic(a,b));a.replace&&(c&&(a=a.replace(c,"")),d&&(a=a.replace(d,"")));return 1*a};k.extend(L.type.order,{"date-pre":function(a){a=Date.parse(a);return isNaN(a)?-Infinity:a},"html-pre":function(a){return ca(a)?"":a.replace?a.replace(/<.*?>/g,"").toLowerCase():a+""},"string-pre":function(a){return ca(a)?"":"string"===typeof a?a.toLowerCase():a.toString?a.toString():""},"string-asc":function(a,b){return ab?1:0},"string-desc":function(a,b){return a< +b?1:a>b?-1:0}});Va("");k.extend(!0,u.ext.renderer,{header:{_:function(a,b,c,d){k(a.nTable).on("order.dt.DT",function(e,f,g,h){a===f&&(e=c.idx,b.removeClass(c.sSortingClass+" "+d.sSortAsc+" "+d.sSortDesc).addClass("asc"==h[e]?d.sSortAsc:"desc"==h[e]?d.sSortDesc:c.sSortingClass))})},jqueryui:function(a,b,c,d){k("
").addClass(d.sSortJUIWrapper).append(b.contents()).append(k("").addClass(d.sSortIcon+" "+c.sSortingClassJUI)).appendTo(b);k(a.nTable).on("order.dt.DT",function(e,f,g,h){a===f&& +(e=c.idx,b.removeClass(d.sSortAsc+" "+d.sSortDesc).addClass("asc"==h[e]?d.sSortAsc:"desc"==h[e]?d.sSortDesc:c.sSortingClass),b.find("span."+d.sSortIcon).removeClass(d.sSortJUIAsc+" "+d.sSortJUIDesc+" "+d.sSortJUI+" "+d.sSortJUIAscAllowed+" "+d.sSortJUIDescAllowed).addClass("asc"==h[e]?d.sSortJUIAsc:"desc"==h[e]?d.sSortJUIDesc:c.sSortingClassJUI))})}}});var xb=function(a){return"string"===typeof a?a.replace(/&/g,"&").replace(//g,">").replace(/"/g,"""):a};u.render= +{number:function(a,b,c,d,e){return{display:function(f){if("number"!==typeof f&&"string"!==typeof f)return f;var g=0>f?"-":"",h=parseFloat(f);if(isNaN(h))return xb(f);h=h.toFixed(c);f=Math.abs(h);h=parseInt(f,10);f=c?b+(f-h).toFixed(c).substring(2):"";return g+(d||"")+h.toString().replace(/\B(?=(\d{3})+(?!\d))/g,a)+f+(e||"")}}},text:function(){return{display:xb,filter:xb}}};k.extend(u.ext.internal,{_fnExternApiFunc:fc,_fnBuildAjax:La,_fnAjaxUpdate:Fb,_fnAjaxParameters:Ob,_fnAjaxUpdateDraw:Pb,_fnAjaxDataSrc:Ma, +_fnAddColumn:Wa,_fnColumnOptions:Da,_fnAdjustColumnSizing:ra,_fnVisibleToColumnIndex:sa,_fnColumnIndexToVisible:ta,_fnVisbleColumns:na,_fnGetColumns:Fa,_fnColumnTypes:Ya,_fnApplyColumnDefs:Cb,_fnHungarianMap:G,_fnCamelToHungarian:O,_fnLanguageCompat:ma,_fnBrowserDetect:Ab,_fnAddData:ea,_fnAddTr:Ga,_fnNodeToDataIndex:function(a,b){return b._DT_RowIndex!==q?b._DT_RowIndex:null},_fnNodeToColumnIndex:function(a,b,c){return k.inArray(c,a.aoData[b].anCells)},_fnGetCellData:S,_fnSetCellData:Db,_fnSplitObjNotation:ab, +_fnGetObjectDataFn:ia,_fnSetObjectDataFn:da,_fnGetDataMaster:bb,_fnClearTable:Ha,_fnDeleteIndex:Ia,_fnInvalidate:va,_fnGetRowElements:$a,_fnCreateTr:Za,_fnBuildHead:Eb,_fnDrawHead:xa,_fnDraw:fa,_fnReDraw:ja,_fnAddOptionsHtml:Hb,_fnDetectHeader:wa,_fnGetUniqueThs:Ka,_fnFeatureHtmlFilter:Jb,_fnFilterComplete:ya,_fnFilterCustom:Sb,_fnFilterColumn:Rb,_fnFilter:Qb,_fnFilterCreateSearch:gb,_fnEscapeRegex:hb,_fnFilterData:Tb,_fnFeatureHtmlInfo:Mb,_fnUpdateInfo:Wb,_fnInfoMacros:Xb,_fnInitialise:za,_fnInitComplete:Na, +_fnLengthChange:ib,_fnFeatureHtmlLength:Ib,_fnFeatureHtmlPaginate:Nb,_fnPageChange:kb,_fnFeatureHtmlProcessing:Kb,_fnProcessingDisplay:U,_fnFeatureHtmlTable:Lb,_fnScrollDraw:Ea,_fnApplyToChildren:Z,_fnCalculateColumnWidths:Xa,_fnThrottle:fb,_fnConvertToWidth:Zb,_fnGetWidestNode:$b,_fnGetMaxLenString:ac,_fnStringToCss:K,_fnSortFlatten:pa,_fnSort:Gb,_fnSortAria:cc,_fnSortListener:nb,_fnSortAttachListener:db,_fnSortingClasses:Pa,_fnSortData:bc,_fnSaveState:Qa,_fnLoadState:dc,_fnSettingsFromNode:Ra,_fnLog:aa, +_fnMap:V,_fnBindAction:ob,_fnCallbackReg:Q,_fnCallbackFire:I,_fnLengthOverflow:jb,_fnRenderer:eb,_fnDataSource:P,_fnRowAttributes:cb,_fnExtend:pb,_fnCalculateEnd:function(){}});k.fn.dataTable=u;u.$=k;k.fn.dataTableSettings=u.settings;k.fn.dataTableExt=u.ext;k.fn.DataTable=function(a){return k(this).dataTable(a).api()};k.each(u,function(a,b){k.fn.DataTable[a]=b});return k.fn.dataTable}); diff --git a/inst/rmarkdown/templates/data/skeleton/template_libs/sg/css/design-system-base.css b/inst/rmarkdown/templates/data/skeleton/template_libs/sg/css/design-system-base.css new file mode 100644 index 0000000..dc7cb31 --- /dev/null +++ b/inst/rmarkdown/templates/data/skeleton/template_libs/sg/css/design-system-base.css @@ -0,0 +1,5160 @@ +@charset "UTF-8"; +/** + * BASE STYLING + */ +/*------------------------------------*\ + DESIGN SYSTEM BASE +\*------------------------------------*/ +/** + * SETTINGS + */ +/*------------------------------------*\ + COLOUR DEFINITIONS +\*------------------------------------*/ +/*------------------------------------*\ + GRID SETTINGS +\*------------------------------------*/ +/*------------------------------------*\ + TRANSITION + Variables and helpers for CSS transitions +\*------------------------------------*/ +/*------------------------------------*\ + TYPE +\*------------------------------------*/ +/** + * TOOLS + */ +/*------------------------------------*\ + MIXINS +\*------------------------------------*/ +/** + * Mixin to enforce consistency on block-style links, e.g. search results, + * category items, etc + */ +/** + * blocklink variant + */ +/** + * Animated underscore used on logo images + */ +/** + * Mixin to enforce consistent margins on "block" elements, e.g. blockquotes, + * info notes, accordions, etc + */ +/** + * Mixin to enforce consistent open/close icons, + * mobile section nav, accordions, etc + */ +#bp-small, +#bp-medium, +#bp-large, +#bp-xlarge { + display: none; } + +@media (min-width: 480px) { + #bp-small { + display: block; } } +@media (min-width: 768px) { + #bp-medium { + display: block; } } +@media (min-width: 992px) { + #bp-large { + display: block; } } +@media (min-width: 1200px) { + #bp-xlarge { + display: block; } } +/** + * GENERIC + */ +/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ +/** + * 1. Set default font family to sans-serif. + * 2. Prevent iOS and IE text size adjust after device orientation change, + * without disabling user zoom. + */ +html { + font-family: sans-serif; + /* 1 */ + -ms-text-size-adjust: 100%; + /* 2 */ + -webkit-text-size-adjust: 100%; + /* 2 */ } + +/** + * Remove default margin. + */ +body { + margin: 0; } + +/* HTML5 display definitions + ========================================================================== */ +/** + * Correct `block` display not defined for any HTML5 element in IE 8/9. + * Correct `block` display not defined for `details` or `summary` in IE 10/11 + * and Firefox. + * Correct `block` display not defined for `main` in IE 11. + */ +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +main, +menu, +nav, +section, +summary { + display: block; } + +/** + * 1. Correct `inline-block` display not defined in IE 8/9. + * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. + */ +audio, +canvas, +progress, +video { + display: inline-block; + /* 1 */ + vertical-align: baseline; + /* 2 */ } + +/** + * Prevent modern browsers from displaying `audio` without controls. + * Remove excess height in iOS 5 devices. + */ +audio:not([controls]) { + display: none; + height: 0; } + +/** + * Address `[hidden]` styling not present in IE 8/9/10. + * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22. + */ +[hidden], +template { + display: none; } + +/* Links + ========================================================================== */ +/** + * Remove the gray background color from active links in IE 10. + */ +a { + background-color: transparent; } + +/** + * Improve readability of focused elements when they are also in an + * active/hover state. + */ +a:active, +a:hover { + outline: 0; } + +/* Text-level semantics + ========================================================================== */ +/** + * Address styling not present in IE 8/9/10/11, Safari, and Chrome. + */ +abbr[title] { + text-decoration: none; } + +/** + * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. + */ +b, +strong { + font-weight: bold; } + +/** + * Address styling not present in Safari and Chrome. + */ +dfn { + font-style: italic; } + +/** + * Address variable `h1` font-size and margin within `section` and `article` + * contexts in Firefox 4+, Safari, and Chrome. + */ +h1 { + font-size: 2em; + margin: 0.67em 0; } + +/** + * Address styling not present in IE 8/9. + */ +mark { + background: #ff0; + color: #000; } + +/** + * Address inconsistent and variable font size in all browsers. + */ +small { + font-size: 80%; } + +/** + * Prevent `sub` and `sup` affecting `line-height` in all browsers. + */ +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; } + +sup { + top: -0.5em; } + +sub { + bottom: -0.25em; } + +/* Embedded content + ========================================================================== */ +/** + * Remove border when inside `a` element in IE 8/9/10. + */ +img { + border: 0; } + +/** + * Correct overflow not hidden in IE 9/10/11. + */ +svg:not(:root) { + overflow: hidden; } + +/* Grouping content + ========================================================================== */ +/** + * Address margin not present in IE 8/9 and Safari. + */ +figure { + margin: 1em 40px; } + +/** + * Address differences between Firefox and other browsers. + */ +hr { + box-sizing: content-box; + height: 0; } + +/** + * Contain overflow in all browsers. + */ +pre { + overflow: auto; } + +/** + * Address odd `em`-unit font size rendering in all browsers. + */ +code, +kbd, +pre, +samp { + font-family: monospace, monospace; + font-size: 1em; } + +/* Forms + ========================================================================== */ +/** + * Known limitation: by default, Chrome and Safari on OS X allow very limited + * styling of `select`, unless a `border` property is set. + */ +/** + * 1. Correct color not being inherited. + * Known issue: affects color of disabled elements. + * 2. Correct font properties not being inherited. + * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. + */ +button, +input, +optgroup, +select, +textarea { + color: inherit; + /* 1 */ + font: inherit; + /* 2 */ + margin: 0; + /* 3 */ } + +/** + * Address `overflow` set to `hidden` in IE 8/9/10/11. + */ +button { + overflow: visible; } + +/** + * Address inconsistent `text-transform` inheritance for `button` and `select`. + * All other form control elements do not inherit `text-transform` values. + * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera. + * Correct `select` style inheritance in Firefox. + */ +button, +select { + text-transform: none; } + +/** + * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` + * and `video` controls. + * 2. Correct inability to style clickable `input` types in iOS. + * 3. Improve usability and consistency of cursor style between image-type + * `input` and others. + */ +button, +html input[type="button"], +input[type="reset"], +input[type="submit"] { + -webkit-appearance: button; + /* 2 */ + cursor: pointer; + /* 3 */ } + +/** + * Re-set default cursor for disabled elements. + */ +button[disabled], +html input[disabled] { + cursor: default; } + +/** + * Remove inner padding and border in Firefox 4+. + */ +button::-moz-focus-inner, +input::-moz-focus-inner { + border: 0; + padding: 0; } + +/** + * Address Firefox 4+ setting `line-height` on `input` using `!important` in + * the UA stylesheet. + */ +input { + line-height: normal; } + +/** + * It's recommended that you don't attempt to style these elements. + * Firefox's implementation doesn't respect box-sizing, padding, or width. + * + * 1. Address box sizing set to `content-box` in IE 8/9/10. + * 2. Remove excess padding in IE 8/9/10. + */ +input[type="checkbox"], +input[type="radio"] { + box-sizing: border-box; + /* 1 */ + padding: 0; + /* 2 */ } + +/** + * Fix the cursor style for Chrome's increment/decrement buttons. For certain + * `font-size` values of the `input`, it causes the cursor style of the + * decrement button to change from `default` to `text`. + */ +input[type="number"]::-webkit-inner-spin-button, +input[type="number"]::-webkit-outer-spin-button { + height: auto; } + +/** + * 1. Address `appearance` set to `searchfield` in Safari and Chrome. + * 2. Address `box-sizing` set to `border-box` in Safari and Chrome. + */ +input[type="search"] { + -webkit-appearance: textfield; + /* 1 */ + box-sizing: content-box; + /* 2 */ } + +/** + * Remove inner padding and search cancel button in Safari and Chrome on OS X. + * Safari (but not Chrome) clips the cancel button when the search input has + * padding (and `textfield` appearance). + */ +input[type="search"]::-webkit-search-cancel-button, +input[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; } + +/** + * Define consistent border, margin, and padding. + */ +fieldset { + border: 1px solid #c0c0c0; + margin: 0 2px; + padding: 0.35em 0.625em 0.75em; } + +/** + * 1. Correct `color` not being inherited in IE 8/9/10/11. + * 2. Remove padding so people aren't caught out if they zero out fieldsets. + */ +legend { + border: 0; + /* 1 */ + padding: 0; + /* 2 */ } + +/** + * Remove default vertical scrollbar in IE 8/9/10/11. + */ +textarea { + overflow: auto; } + +/** + * Don't inherit the `font-weight` (applied by a rule above). + * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. + */ +optgroup { + font-weight: bold; } + +/* Tables + ========================================================================== */ +/** + * Remove most spacing between table cells. + */ +table { + border-collapse: collapse; + border-spacing: 0; } + +td, +th { + padding: 0; } + +/*------------------------------------*\ + RESET (INUITCSS) +\*------------------------------------*/ +/** + * As well as using normalize.css, it is often advantageous to remove all + * margins from certain elements. + */ +body, +h1, h2, h3, h4, h5, h6, +p, blockquote, pre, +dl, dd, ol, ul, +form, fieldset, legend, +figure, +table, th, td, caption, +hr { + margin: 0; + padding: 0; } + +/** + * Give a help cursor to elements that give extra info on `:hover`. + */ +abbr[title], +dfn[title] { + cursor: help; } + +/** + * Remove underlines from potentially troublesome elements. + */ +u, +ins { + text-decoration: none; } + +/** + * Apply faux underlines to inserted text via `border-bottom`. + */ +ins { + border-bottom: 1px solid; } + +/*------------------------------------*\ + BOX-SIZING (INUITCSS) +\*------------------------------------*/ +/** + * Set the global `box-sizing` state to `border-box`. + * + * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice + * paulirish.com/2012/box-sizing-border-box-ftw + */ +html { + box-sizing: border-box; } + +*, *::before, *::after { + box-sizing: inherit; } + +/** + * HELPERS + */ +/*------------------------------------*\ + MARGIN MODIFIERS +\*------------------------------------*/ +.ds_no-margin { + margin: 0 !important; } + +.ds_no-margin--top { + margin-top: 0 !important; } + +.ds_no-margin--right { + margin-right: 0 !important; } + +.ds_no-margin--bottom { + margin-bottom: 0 !important; } + +.ds_no-margin--left { + margin-left: 0 !important; } + +.ds_no-margin--vertical { + margin-bottom: 0 !important; + margin-top: 0 !important; } + +.ds_no-margin--horizontal { + margin-left: 0 !important; + margin-right: 0 !important; } + +/*------------------------------------*\ + PADDING MODIFIERS +\*------------------------------------*/ +.ds_no-padding { + padding: 0 !important; } + +.ds_no-padding--top { + padding-top: 0 !important; } + +.ds_no-padding--right { + padding-right: 0 !important; } + +.ds_no-padding--bottom { + padding-bottom: 0 !important; } + +.ds_no-padding--left { + padding-left: 0 !important; } + +.ds_no-padding--vertical { + padding-bottom: 0 !important; + padding-top: 0 !important; } + +.ds_no-padding--horizontal { + padding-left: 0 !important; + padding-right: 0 !important; } + +/*------------------------------------*\ + VISIBILITY +\*------------------------------------*/ +.visually-hidden { + clip: rect(1px 1px 1px 1px); + /* IE6, IE7 */ + clip: rect(1px, 1px, 1px, 1px); + height: 1px; + width: 1px; + overflow: hidden; + position: absolute !important; } + +.fully-hidden { + display: none !important; } + +/*------------------------------------*\ + WRAPPERS +\*------------------------------------*/ +.ds_wrapper { + margin: 0 auto; + padding: 0 16px; + width: 100%; } + .ds_wrapper--no-overflow { + overflow: hidden; } + +@media (min-width: 768px) { + .ds_wrapper { + width: 768px; } } +@media (min-width: 992px) { + .ds_wrapper { + width: 960px; } } +@media (min-width: 1200px) { + .ds_wrapper { + width: 1152px; } } +/** + * BEHAVIOUR + */ +html, +body { + scroll-behavior: smooth; } + +@media (prefers-reduced-motion: reduce) { + html, + body { + scroll-behavior: auto; } } +/** + * TYPE + */ +/*------------------------------------*\ + BODY +\*------------------------------------*/ +html { + font-size: 16px; } + +body { + background: #ffffff; + color: #333333; + font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif; + font-style: normal; + font-weight: normal; + -webkit-font-smoothing: antialiased; + line-height: 24px; + margin: 0; + text-rendering: optimizeLegibility; } + +@media (min-width: 768px) { + html { + font-size: 19px; } + + body { + line-height: 32px; } } +/*------------------------------------*\ + HEADINGS +\*------------------------------------*/ +h1, .alpha { + font-size: 30px; + font-weight: 700; + line-height: 40px; + margin-bottom: 32px; + text-rendering: optimizeLegibility; } + @media (min-width: 768px) { + h1, .alpha { + font-size: 44px; } } + +h2, h3, h4, +.beta, .gamma, .delta { + font-weight: 700; + text-rendering: optimizeLegibility; } + +h2, .beta { + font-size: 22px; + line-height: 32px; + margin-bottom: 8px; } + @media (min-width: 768px) { + h2, .beta { + font-size: 30px; } } + h2:not(:first-child), .beta:not(:first-child) { + margin-top: 32px; } + +h3, .gamma { + font-size: 19px; + line-height: 24px; + margin-bottom: 8px; } + @media (min-width: 768px) { + h3, .gamma { + font-size: 22px; } } + h3:not(:first-child), .gamma:not(:first-child) { + margin-top: 24px; } + +h4, .delta { + font-size: 16px; + line-height: 24px; } + @media (min-width: 768px) { + h4, .delta { + font-size: 19px; } } + +h5, .epsilon { + font-size: 14px; + font-weight: 700; + line-height: 24px; } + @media (min-width: 768px) { + h5, .epsilon { + font-size: 16px; } } + +@media (min-width: 768px) { + h1, .alpha { + line-height: 56px; } + + h2, .beta { + line-height: 40px; + margin-bottom: 16px; } + h2:not(:first-child), .beta:not(:first-child) { + margin-top: 40px; } + + h3, .gamma { + line-height: 32px; } } +/*------------------------------------*\ + LEADER +\*------------------------------------*/ +.ds_leader { + font-size: 19px; + font-weight: 300; + line-height: 32px; + margin-bottom: 32px; } + @media (min-width: 768px) { + .ds_leader { + font-size: 24px; } } + .ds_leader--first-paragraph { + font-size: inherit; + font-weight: inherit; + line-height: inherit; + margin-bottom: inherit; } + .ds_leader--first-paragraph > p:first-child { + font-size: 19px; + font-weight: 300; + margin-bottom: 32px; } + @media (min-width: 768px) { + .ds_leader--first-paragraph > p:first-child { + font-size: 24px; } } + +@media (min-width: 768px) { + .ds_leader { + line-height: 40px; + margin-bottom: 40px; } + .ds_leader--first-paragraph { + font-size: inherit; + font-weight: inherit; + line-height: inherit; + margin-bottom: inherit; } + .ds_leader--first-paragraph > p:first-child { + line-height: 40px; + margin-bottom: 40px; } } +/*------------------------------------*\ + LINKS +\*------------------------------------*/ +a, +.ds_link { + color: #0065bd; + text-decoration: underline; + outline: 2px solid transparent; + transition: color 0.2s, background-color 0.2s, outline 0.2s; } + a:hover, + .ds_link:hover { + background-color: #d9effc; + color: #00437e; + outline: 2px solid #d9effc; + transition-duration: 0.2s; } + a:focus, + .ds_link:focus { + background-color: #fdd522; + box-shadow: -2px 5px #333333, 2px 5px #333333; + color: #333333; + outline: 2px solid #fdd522; + outline-offset: 0; + text-decoration: none; + transition-duration: 0s; } + a > svg, + .ds_link > svg { + fill: currentColor; } + +.ds_link { + background: transparent; + border: 0; + display: inline; + margin: 0; + padding: 0; } + +.ds_reversed a, +.ds_reversed .ds_link { + color: currentColor; } + .ds_reversed a:focus, + .ds_reversed .ds_link:focus { + color: #333333; } + .ds_reversed a:hover, + .ds_reversed .ds_link:hover { + color: #00437e; } + +a[disabled] { + pointer-events: none; } + +h1 a, h2 a, h3 a, h4 a { + text-decoration: none; } + h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover { + text-decoration: underline; } + +/*------------------------------------*\ + LISTS +\*------------------------------------*/ +.ds_no-bullets { + list-style-type: none; + margin-left: 0; } + +/*------------------------------------*\ + SMALL +\*------------------------------------*/ +small, +.ds_small { + font-size: 14px; } + @media (min-width: 768px) { + small, + .ds_small { + font-size: 16px; } } + +.ds_tiny { + font-size: 12px; } + @media (min-width: 768px) { + .ds_tiny { + font-size: 14px; } } + +/*------------------------------------*\ + $BASE SPACING +\*------------------------------------*/ +/** + * Based on the super fantastic work shown here: csswizardry.com/2012/06/single-direction-margin-declarations + */ +/** + * Elements + */ +h1, h2, h3, h4, h5, h6, +ul, ol, dl, +blockquote, p, address, +table, +fieldset, figure, +pre { + margin: 0 0 16px; } + +/** + * `hr` elements only take up a few pixels, so we need to give them special + * treatment regarding vertical rhythm. + */ +hr { + margin: 0 0 16px; } + +/** + * Where `margin-left` is concerned we want to try and indent certain elements + * by a consistent amount. Define that amount once, here. + */ +ul, ol, dd { + margin-left: 24px; } + +li { + margin-bottom: 8px; } + +/** + * ELEMENTS + */ +/*------------------------------------*\ + ICON +\*------------------------------------*/ +.ds_icon { + fill: currentColor; + height: calc(24em/16); + vertical-align: middle; + width: calc(24em/16); } + +@media (min-width: 768px) { + .ds_icon { + height: calc(24em/19); + width: calc(24em/19); } } +.ds_icon--12 { + width: 12px; + height: 12px; } + +.ds_icon--16 { + width: 16px; + height: 16px; } + +.ds_icon--20 { + width: 20px; + height: 20px; } + +.ds_icon--24 { + width: 24px; + height: 24px; } + +.ds_icon--28 { + width: 28px; + height: 28px; } + +.ds_icon--32 { + width: 32px; + height: 32px; } + +.ds_icon--36 { + width: 36px; + height: 36px; } + +.ds_icon--40 { + width: 40px; + height: 40px; } + +.ds_icon--44 { + width: 44px; + height: 44px; } + +.ds_icon--48 { + width: 48px; + height: 48px; } + +.ds_icon--52 { + width: 52px; + height: 52px; } + +.ds_icon--56 { + width: 56px; + height: 56px; } + +.ds_icon--60 { + width: 60px; + height: 60px; } + +.ds_icon--64 { + width: 64px; + height: 64px; } + +.ds_icon--68 { + width: 68px; + height: 68px; } + +.ds_icon--72 { + width: 72px; + height: 72px; } + +.ds_icon--76 { + width: 76px; + height: 76px; } + +.ds_icon--80 { + width: 80px; + height: 80px; } + +.ds_icon--fill { + width: 100%; + height: 100%; } + +/*------------------------------------*\ + ABBREVIATIONS + Improved display of abbreviation styling with better readability than browser default +\*------------------------------------*/ +/* + * [1] consider limiting this in scope to
elements or some other containing element to + * reduce risk of unintended side-effects + * [2] only apply this if there is a title attribute + */ +/* [1] */ +abbr[title], acronym[title] { + /* [2] */ + position: relative; + text-decoration: none; } + abbr[title]::after, acronym[title]::after { + border-bottom: 1px dotted currentColor; + content: ''; + left: 0; + position: absolute; + right: 0; + top: calc(100% - 2px); } + +/*------------------------------------*\ + ADDRESS +\*------------------------------------*/ +address { + font-style: normal; } + +/*------------------------------------*\ + BUTTONS +\*------------------------------------*/ +button, +input[type="button"], +input[type="submit"], +.ds_button { + background: #0065bd; + border: 0; + border-radius: 0; + color: #ffffff; + cursor: pointer; + display: inline-block; + font-size: 14px; + font-weight: 700; + line-height: 24px; + min-height: 56px; + min-width: 56px; + outline-width: 0; + padding: 16px; + position: relative; + text-align: center; + text-decoration: none; + transition: background-color 0.2s; + margin-top: 32px; + margin-bottom: 32px; } + @media (min-width: 768px) { + button, + input[type="button"], + input[type="submit"], + .ds_button { + font-size: 16px; } } + button:hover, + input[type="button"]:hover, + input[type="submit"]:hover, + .ds_button:hover { + background-color: #00437e; + color: #ffffff; + transition-duration: 0.2s; } + button:focus, + input[type="button"]:focus, + input[type="submit"]:focus, + .ds_button:focus { + background-color: #fdd522; + box-shadow: 0 3px #333333; + color: #333333; + outline-color: #fdd522; + outline-width: 0; + transition-duration: 0s; } + button .ds_icon, + input[type="button"] .ds_icon, + input[type="submit"] .ds_icon, + .ds_button .ds_icon { + pointer-events: none; } + button[disabled], + input[type="button"][disabled], + input[type="submit"][disabled], + .ds_button[disabled] { + background-color: #727272; + box-shadow: none; + color: #ffffff; + font-weight: 400; + outline: none; + pointer-events: none; } + +.ds_reversed .ds_button { + background-color: #ffffff; + color: #0065bd; } + .ds_reversed .ds_button:focus, .ds_reversed .ds_button:hover:focus { + background-color: #fdd522; } + .ds_reversed .ds_button:hover { + background-color: #d9effc; } + .ds_reversed .ds_button--secondary { + background-color: transparent; + border-color: currentColor; + color: #ffffff; } + .ds_reversed .ds_button--secondary:hover:not(:focus) { + background-color: rgba(0, 101, 189, 0.3); + color: #ffffff; } + +.ds_button--secondary { + background-color: transparent; + color: #0065bd; + outline: 2px solid currentColor; + outline-offset: -2px; } + .ds_button--secondary:hover:not(:focus) { + background-color: #d9effc; + color: #00437e; } +.ds_button--cancel { + background-color: transparent; + color: #333333; + outline: 2px solid currentColor; + outline-offset: -2px; } + .ds_button--cancel:hover:not(:focus) { + background-color: #ebebeb; + color: #333333; } + +.ds_button--small { + font-size: 14px; + min-height: 48px; + min-width: 48px; + padding-top: 12px; + padding-bottom: 12px; } + @media (min-width: 768px) { + .ds_button--small { + font-size: 16px; } } + +.ds_button--fixed { + width: 200px; } + .ds_button--fixed.ds_button--small { + width: 160px; } +.ds_button--max { + max-width: 480px; + width: 100%; } + +.ds_button-group { + margin-top: 32px; + margin-bottom: 32px; } + .ds_button-group > .ds_button { + margin: 0 0 24px; } + .ds_button-group > .ds_button:last-child { + margin-bottom: 0; } + +.ds_button .ds_icon { + bottom: 0; + box-sizing: initial; + height: 40px; + padding: 8px; + pointer-events: none; + position: absolute; + right: 0; + top: 0; + width: 40px; } +.ds_button--small .ds_icon { + height: 32px; + padding: 8px; + width: 32px; } +.ds_button--has-icon { + padding-right: calc(56px + 16px); } +.ds_button--has-icon--left { + padding-left: calc(56px + 16px); + padding-right: 16px; } + .ds_button--has-icon--left .ds_icon { + left: 0; + right: auto; } + +/*------------------------------------*\ + LAYOUT +\*------------------------------------*/ +.ds_layout { + margin-right: -32px; + overflow: hidden; + margin-bottom: 91px; } + .ds_layout > *[class] { + margin-right: 32px; } + @supports (display: grid) { + .ds_layout { + display: grid; + grid-gap: 0 32px; + margin-right: 0; + overflow: visible; } + .ds_layout > *[class] { + margin-left: 0; + margin-right: 0; + width: auto; } } + .ds_layout__content img, .ds_layout__partner img { + max-width: 100%; } + +@media (min-width: 768px) { + .ds_layout__feedback { + clear: left; + width: calc(100% * 0.66667 - 32px); } + .ds_layout--article .ds_layout__header { + clear: left; + float: left; + width: calc(100% * 0.66667 - 32px); } + .ds_layout--article .ds_layout__partner { + float: left; + width: calc(100% * 0.33333 - 32px); } + .ds_layout--article .ds_layout__sidebar { + float: left; + width: calc(100% * 0.33333 - 32px); } + .ds_layout--article .ds_layout__content { + clear: left; + float: left; + width: calc(100% * 0.66667 - 32px); } + .ds_layout--guide .ds_layout__header { + clear: left; + float: left; + width: calc(100% * 0.66667 - 32px); } + .ds_layout--guide .ds_layout__partner { + float: left; + width: calc(100% * 0.33333 - 32px); } + .ds_layout--guide .ds_layout__navigation { + clear: left; + width: calc(100% * 0.66667 - 32px); } + .ds_layout--guide .ds_layout__content { + clear: left; + float: left; + width: calc(100% * 0.66667 - 32px); } + .ds_layout--guide .ds_layout__sidebar { + float: left; + width: calc(100% * 0.25 - 32px); + margin-left: calc(100% * 0.08333); } + .ds_layout--guide .ds_layout__feedback { + width: calc(100% * 0.66667 - 32px); } + .ds_layout--category-list .ds_layout__list { + width: calc(100% * 0.66667 - 32px); } + .ds_layout--category-list .ds_layout__grid { + width: calc(100% * 1 - 32px); } + .ds_layout--search-results .ds_layout__content { + width: calc(100% * 0.66667 - 32px); } + .ds_layout--search-results .ds_layout__list { + width: calc(100% * 0.83333 - 32px); } } +@media (min-width: 992px) { + .ds_layout--article .ds_layout__content { + clear: left; + float: left; + width: calc(100% * 0.66667 - 32px); } + .ds_layout--article .ds_layout__sidebar { + float: left; + margin-left: calc(100% * 0.08333); + width: calc(100% * 0.25 - 32px); } + .ds_layout--guide .ds_layout__content { + width: calc(100% * 0.66667 - 32px); } + .ds_layout--guide .ds_layout__sidebar { + float: left; + margin-left: calc(100% * 0.08333); + width: calc(100% * 0.25 - 32px); } + .ds_layout--guide .ds_layout__feedback { + width: calc(100% * 0.66667 - 32px); } + .ds_layout--search-results .ds_layout__list { + width: calc(100% * 0.66667 - 32px); } } +@supports (display: grid) { + /** + * GRID KEY + * c: content + * f: feedback + * h: header + * l: list (e.g. category items, search results) + * n: navigation (e.g. subpages of a publication or guide) + * p: partner branding + * s: sidebar + */ + body .ds_layout > *[class] { + margin-left: 0; + margin-right: 0; + width: auto; } + + .ds_layout { + grid-template-columns: repeat(2, 1fr); + grid-template-rows: auto 1fr; + grid-template-areas: 'h h' 'p p' 'c c' 's s' 'f f'; + margin-right: 0; + margin-bottom: 0; } + .ds_layout__content { + grid-area: c; } + .ds_layout__feedback { + grid-area: f; } + .ds_layout__header { + grid-area: h; } + .ds_layout__list { + grid-area: l; } + .ds_layout__grid { + grid-area: g; } + .ds_layout__navigation { + grid-area: n; } + .ds_layout__partner { + grid-area: p; + align-self: start; + margin-top: 32px; + margin-bottom: 32px; } + .ds_layout__sidebar { + grid-area: s; } + .ds_layout--category-list { + grid-template-areas: 'h h' 'c c' 'l l' 'g g' 'f f'; } + .ds_layout--guide { + grid-template-areas: "h h" "p p" "n n" "c c" "s s" "f f"; } + + @media (min-width: 480px) { + .ds_layout { + grid-template-columns: repeat(6, 1fr); + grid-template-areas: 'h h h h h h' 'p p p p p p' 'c c c c c c' 's s s s s s' 'f f f f f f'; } + .ds_layout--category-list { + grid-template-areas: 'h h h h h h' 'c c c c c c' 'l l l l l l' 'g g g g g g' 'f f f f f f'; } + .ds_layout--guide { + grid-template-areas: "h h h h h h" "p p p p p p" "n n n n n n" "c c c c c c" "s s s s s s" "f f f f f f"; } } + @media (min-width: 768px) { + .ds_layout { + grid-template-columns: repeat(12, 1fr); } + .ds_layout--article { + grid-template-areas: 'h h h h h h h h p p p p' 'c c c c c c c c s s s s' 'f f f f f f f f . . . .'; } + .ds_layout--guide { + grid-template-areas: "h h h h h h h h p p p p" "n n n n n n n n . . . ." "c c c c c c c c s s s s" "f f f f f f f f . . . ."; } + .ds_layout--category-list { + grid-template-areas: 'h h h h h h h h h h h h' 'c c c c c c c c c c c c' 'l l l l l l l l . . . .' 'g g g g g g g g g g g g' 'f f f f f f f f . . . .'; } + .ds_layout--search-results { + grid-template-areas: 'h h h h h h h h h h h h' 'c c c c c c c c . . . .' 'l l l l l l l l l l . .'; } } + @media (min-width: 992px) { + .ds_layout--article { + grid-template-areas: 'h h h h h h h h . p p p' 'c c c c c c c c . s s s' 'f f f f f f f f . . . .'; } + .ds_layout--guide { + grid-template-areas: "h h h h h h h h . p p p" "n n n n n n n n . . . ." "c c c c c c c c . s s s" "f f f f f f f f . . . ."; } + .ds_layout--search-results { + grid-template-areas: 'h h h h h h h h h h h h' 'c c c c c c c c . . . .' 'l l l l l l l l . . . .'; } } } +/*------------------------------------*\ + PAGE SETUP + anchor footer to bottom of the viewport on short pages +\*------------------------------------*/ +html { + min-height: 100%; + position: relative; } + +.ds_page { + min-height: calc(100vh - 360px); + margin-bottom: 360px; } + +.ds_site-footer { + position: absolute; + bottom: 0; + left: 0; + right: 0; } + +@supports (display: grid) { + .ds_page { + display: grid; + margin-bottom: 0; + min-height: 100vh; + grid-template: 'page-top' auto 'page-middle' 1fr 'page-bottom' auto; } + .ds_page__top { + grid-area: page-top; } + .ds_page__middle { + grid-area: page-middle; } + .ds_page__bottom { + grid-area: page-bottom; } + + .ds_site-footer { + position: static; } } +/*------------------------------------*\ + CATEGORY PAGE LAYOUT +\*------------------------------------*/ +.ds_page__middle { + display: grid; + grid-template-rows: auto 1fr; + position: relative; } + +.category-lower { + padding-bottom: 72px; + background: #f8f8f8; + border-top: 1px solid #ebebeb; + margin-top: -1px; } + +/*------------------------------------*\ + DESIGN SYSTEM FORMS +\*------------------------------------*/ +/*------------------------------------*\ + FORM VARIABLES +\*------------------------------------*/ +/*------------------------------------*\ + FORM MIXINS +\*------------------------------------*/ +/*------------------------------------*\ + FORM ELEMENTS (base) +\*------------------------------------*/ +legend { + font-size: 19px; + font-weight: bold; + margin-bottom: 8px; } + @media (min-width: 768px) { + legend { + font-size: 22px; } } + +fieldset { + border: 0; } + +/*------------------------------------*\ + CHARACTER COUNT +\*------------------------------------*/ +.ds_character-count { + margin-top: -16px; } + +/*------------------------------------*\ + CHECKBOXES +\*------------------------------------*/ +.ds_checkbox { + margin-bottom: 24px; + padding-left: 40px; + position: relative; + /** + * [1] minimum size of radio/checkbox for WCAG AAA + */ + /* focus */ + /* checked */ + /* + * [1] this negative margin makes the small checkboxes/radios align left with content + */ + /* hover */ + /* hover-focus */ } + .ds_checkbox__input { + height: 44px; + /* [1] */ + left: -2px; + opacity: 0; + position: absolute; + top: -2px; + width: 44px; } + .ds_checkbox__label { + display: inline-block; + padding: 4px 32px 4px 16px; } + .ds_checkbox__label::before { + background-color: #ffffff; + border: 2px solid #333333; + content: ''; + height: 40px; + left: 0; + position: absolute; + width: 40px; } + .ds_checkbox__label::after { + content: ""; + position: absolute; + bottom: calc(100% - 40px); + left: 0; + right: calc(100% - 40px); + opacity: 0; } + .ds_checkbox__label::before, .ds_checkbox__label::after { + top: -4px; } + @media (min-width: 768px) { + .ds_checkbox__label::before, .ds_checkbox__label::after { + top: 0; } } + .ds_checkbox__input:focus + .ds_checkbox__label::before { + border-width: 4px; + box-shadow: 0 0 0 3px #fdd522; } + .ds_checkbox__input:checked + .ds_checkbox__label::before { + border-color: #333333; } + .ds_checkbox__input:checked + .ds_checkbox__label::after { + opacity: 1; } + .ds_checkbox--small { + margin-bottom: 16px; + margin-left: -8px; + /* [1] */ } + .ds_checkbox--small .ds_checkbox__label::before { + height: 24px; + left: 8px; + top: 8px; + width: 24px; } + .ds_checkbox--small .ds_checkbox__label::after { + bottom: calc(100% - 30px); + left: 10px; + right: calc(100% - 30px); + top: 10px; } + .ds_checkbox--small .ds_checkbox__input:hover + .ds_checkbox__label::before { + box-shadow: 0 0 0 11px #ccc; } + .ds_checkbox--small .ds_checkbox__input:hover:focus + .ds_checkbox__label::before { + box-shadow: 0 0 0 3px #fdd522, 0 0 0 11px #b1b4b6; } + .ds_checkbox > .ds_hint-text { + padding-left: 16px; } + .ds_checkbox__label::after { + /* + * [1] for IE11 support, use image without clip path + */ + background-image: url(../images/icons/icons.stack.svg#checkbox); } + @supports (-webkit-mask-image: url()) or (mask-image: url()) { + .ds_checkbox__label::after { + background-color: currentColor; + background-image: none; + -webkit-mask-image: url(../images/icons/icons.stack.svg#checkbox); + mask-image: url(../images/icons/icons.stack.svg#checkbox); } } + +@supports (-webkit-mask-image: url()) or (mask-image: url()) { + .ds_checkbox { + /* checked */ } + .ds_checkbox__label::after { + background-color: #ffffff; } + .ds_checkbox__input:checked + .ds_checkbox__label::before { + background-color: #333333; } + .ds_checkbox__input:focus:checked + .ds_checkbox__label::before { + background-color: #fdd522; } + .ds_checkbox__input:focus:checked + .ds_checkbox__label::after { + background-color: #333333; } } +/*------------------------------------*\ + CURRENCY WRAPPER +\*------------------------------------*/ +.ds_currency-wrapper { + position: relative; } + .ds_currency-wrapper::before { + font-size: 19px; + content: '£'; + height: 48px; + font-weight: bold; + line-height: 48px; + pointer-events: none; + position: absolute; + text-align: center; + top: 0; + width: 48px; } + @media (min-width: 768px) { + .ds_currency-wrapper::before { + font-size: 24px; } } + .ds_currency-wrapper[data-symbol]::before { + content: attr(data-symbol); } + .ds_currency-wrapper > .ds_input { + padding-left: 40px; } + .ds_currency-wrapper > .ds_input:focus { + padding-left: 39px; } + +/*------------------------------------*\ + $ERROR SUMMARY +\*------------------------------------*/ +/* [1] compensate for border */ +.ds_error-summary { + border: 4px solid #d32205; + padding: 20px 28px; + /* [1] */ + margin-top: 32px; + margin-bottom: 32px; } + .ds_error-summary__title { + margin-top: 0; } + .ds_error-summary__list { + color: #d32205; + font-weight: bold; + list-style-type: none; + margin-left: 0; } + .ds_error-summary__list a { + color: #d32205; } + .ds_error-summary__list a:focus { + color: #333333; } + .ds_error-summary__list li { + margin-left: 0; } + .ds_error-summary__content > :last-child { + margin-bottom: 0; } + +.flashable { + transition: background-color 2s; } + .flashable--flash { + background-color: #fdd522; + transition-duration: 0s; } + +/*------------------------------------*\ + FIELD GROUP +\*------------------------------------*/ +.ds_field-group { + margin-top: 16px; } + .ds_field-group--inline { + display: flex; + flex-direction: row; } + .ds_field-group--inline > div:not(:last-child) { + margin-right: 16px; } + +/*------------------------------------*\ + HINT TEXT +\*------------------------------------*/ +.ds_hint-text { + color: #727272; + margin-bottom: 16px; } + .ds_hint-text > * { + margin-bottom: 8px; } + +/*------------------------------------*\ + LABEL +\*------------------------------------*/ +.ds_label { + color: #333333; + display: inline-block; + font-weight: bold; + margin-bottom: 8px; } + +/*------------------------------------*\ + QUESTION BLOCK (temp) +\*------------------------------------*/ +.ds_question { + margin-bottom: 32px; } + .ds_question--error { + border-left: 4px solid #d32205; + padding-left: 20px; } + .ds_question__message { + margin-bottom: 16px; } + .ds_question__error-message { + color: #d32205; + font-weight: bold; + margin-bottom: 16px; } + +@media (min-width: 768px) { + .ds_question { + margin-bottom: 48px; } } +/*------------------------------------*\ + RADIO BUTTONS +\*------------------------------------*/ +.ds_radio { + margin-bottom: 24px; + padding-left: 40px; + position: relative; + /** + * [1] minimum size of radio/checkbox for WCAG AAA + */ + /* focus */ + /* checked */ + /* + * [1] this negative margin makes the small checkboxes/radios align left with content + */ + /* hover */ + /* hover-focus */ + /* + * [1] for IE11 support, use image without clip path + */ } + .ds_radio__input { + height: 44px; + /* [1] */ + left: -2px; + opacity: 0; + position: absolute; + top: -2px; + width: 44px; } + .ds_radio__label { + display: inline-block; + padding: 4px 32px 4px 16px; } + .ds_radio__label::before { + background-color: #ffffff; + border: 2px solid #333333; + content: ''; + height: 40px; + left: 0; + position: absolute; + width: 40px; } + .ds_radio__label::after { + content: ""; + position: absolute; + bottom: calc(100% - 40px); + left: 0; + right: calc(100% - 40px); + opacity: 0; } + .ds_radio__label::before, .ds_radio__label::after { + top: -4px; + border-radius: 50%; } + @media (min-width: 768px) { + .ds_radio__label::before, .ds_radio__label::after { + top: 0; } } + .ds_radio__input:focus + .ds_radio__label::before { + border-width: 4px; + box-shadow: 0 0 0 3px #fdd522; } + .ds_radio__input:checked + .ds_radio__label::before { + border-color: #333333; } + .ds_radio__input:checked + .ds_radio__label::after { + opacity: 1; } + .ds_radio--small { + margin-bottom: 16px; + margin-left: -8px; + /* [1] */ } + .ds_radio--small .ds_radio__label::before { + height: 24px; + left: 8px; + top: 8px; + width: 24px; } + .ds_radio--small .ds_radio__label::after { + bottom: calc(100% - 31px); + left: 9px; + right: calc(100% - 31px); + top: 9px; } + .ds_radio--small .ds_radio__input:hover + .ds_radio__label::before { + box-shadow: 0 0 0 11px #ccc; } + .ds_radio--small .ds_radio__input:hover:focus + .ds_radio__label::before { + box-shadow: 0 0 0 3px #fdd522, 0 0 0 11px #b1b4b6; } + .ds_radio > .ds_hint-text { + padding-left: 16px; } + .ds_radio__label::after { + /* + * [1] for IE11 support, use image without clip path + */ + background-image: url(../images/icons/icons.stack.svg#radio); } + @supports (display: grid) { + .ds_radio__label::after { + background-color: #333333; + background-image: none; } } + @supports (-webkit-mask-image: url()) or (mask-image: url()) { + .ds_radio__label::after { + background-color: currentColor; + background-image: none; + -webkit-mask-image: url(../images/icons/icons.stack.svg#radio); + mask-image: url(../images/icons/icons.stack.svg#radio); } } + +/*------------------------------------*\ + REVEAL CONTENT +\*------------------------------------*/ +.ds_reveal-content { + display: none; + margin-top: 16px; + padding-left: 16px; + position: relative; } + .ds_reveal-content::before { + background-color: #b3b3b3; + bottom: 0; + content: ''; + left: -22px; + position: absolute; + top: 0; + width: 4px; } + .ds_reveal-content > :last-child { + margin-bottom: 0; } + +:checked ~ .ds_reveal-content { + display: block; } + +/*------------------------------------*\ + SELECT +\*------------------------------------*/ +.ds_select { + -webkit-appearance: none; + -moz-appearance: none; + background-color: #ffffff; + border-radius: 0; + border: 0; + bottom: 0; + height: 44px; + left: 0; + padding: 8px; + position: absolute; + right: 0; + width: 100%; + top: 0; } + .ds_select:focus { + box-shadow: 0 0 0 1px #333333 inset; + outline: 2px solid #fdd522; + outline-offset: 2px; } + +.ds_select-arrow { + background: #0065bd; + bottom: -2px; + content: ''; + pointer-events: none; + position: absolute; + right: -2px; + top: -2px; + width: 48px; } + .ds_select-arrow::before { + bottom: 0; + color: #ffffff; + position: absolute; + right: 0; + top: 0; + z-index: 1; + content: ''; + display: inline-block; + height: 32px; + transition: transform 0.2s, top 0.2s; + width: 32px; + /* + * [1] for IE11 support, use image without clip path + */ + background-image: url(../images/icons/icons.stack.svg#expand_more); + right: 8px; + top: 8px; } + @supports (-webkit-mask-image: url()) or (mask-image: url()) { + .ds_select-arrow::before { + background-color: currentColor; + background-image: none; + -webkit-mask-image: url(../images/icons/icons.stack.svg#expand_more); + mask-image: url(../images/icons/icons.stack.svg#expand_more); } } + +.ds_select:focus + .ds_select-arrow { + background-color: #fdd522; } + .ds_select:focus + .ds_select-arrow::before { + color: #333333; } + +.ds_select-wrapper { + border: 2px solid currentColor; + border-radius: 0; + display: block; + margin-bottom: 24px; + min-height: 48px; + padding: 0; + position: relative; + width: 100%; } + +.ds_select-wrapper.ds_input--error { + min-height: 52px; } + +/*------------------------------------*\ + TEXT INPUTS + Covers text-based INPUT elements and TEXTAREA elements +\*------------------------------------*/ +.ds_input { + border: 2px solid currentColor; + border-radius: 0; + display: block; + margin-bottom: 24px; + min-height: 48px; + padding: 8px; + width: 100%; } + .ds_input:focus { + outline: 3px solid #fdd522; + outline-offset: 0; + box-shadow: inset 0 0 0 2px; } + .ds_input--error { + border-color: #d32205; + border-width: 4px; + padding: 4px; } + .ds_input--error:focus { + border-color: currentColor; + box-shadow: none; } + .ds_input + .ds_input__message { + margin-top: -16px; } + .ds_input__message--error { + color: #d32205; + font-weight: 700; } + +/* + * [1] padding + n character widths + * [2] additional currency padding + right padding + n character widths + */ +.ds_input--fixed-2 { + max-width: calc(16px + 2em); + /* [1] */ } + +.ds_currency-wrapper .ds_input--fixed-2 { + max-width: calc(40px + 8px + 2em); + /* [2] */ } + +.ds_input--fixed-3 { + max-width: calc(16px + 3em); + /* [1] */ } + +.ds_currency-wrapper .ds_input--fixed-3 { + max-width: calc(40px + 8px + 3em); + /* [2] */ } + +.ds_input--fixed-4 { + max-width: calc(16px + 4em); + /* [1] */ } + +.ds_currency-wrapper .ds_input--fixed-4 { + max-width: calc(40px + 8px + 4em); + /* [2] */ } + +.ds_input--fixed-5 { + max-width: calc(16px + 5em); + /* [1] */ } + +.ds_currency-wrapper .ds_input--fixed-5 { + max-width: calc(40px + 8px + 5em); + /* [2] */ } + +.ds_input--fixed-10 { + max-width: calc(16px + 10em); + /* [1] */ } + +.ds_currency-wrapper .ds_input--fixed-10 { + max-width: calc(40px + 8px + 10em); + /* [2] */ } + +.ds_input--fixed-20 { + max-width: calc(16px + 20em); + /* [1] */ } + +.ds_currency-wrapper .ds_input--fixed-20 { + max-width: calc(40px + 8px + 20em); + /* [2] */ } + +.ds_input--fluid-one-quarter { + max-width: 25%; } + +.ds_input--fluid-one-third { + max-width: 33.33333%; } + +.ds_input--fluid-half { + max-width: 50%; } + +.ds_input--fluid-two-thirds { + max-width: 67.66667%; } + +.ds_input--fluid-three-quarters { + max-width: 75%; } + +.ds_input__wrapper { + display: block; + margin-bottom: 24px; } + .ds_input__wrapper--has-icon { + position: relative; } + .ds_input__wrapper--has-icon .ds_input { + margin-right: -48px; + padding-right: 56px; } + .ds_input__wrapper--has-icon .ds_icon { + height: 32px; + padding: 8pxpx; + width: 32px; } + .ds_input__wrapper > * { + float: left; + margin: 0; } + .ds_input__wrapper > .ds_button { + margin: 0; + min-height: 48px; + min-width: 48px; } + +pre { + overflow: visible; } + +code { + background-color: #f8f8f8 !important; + font-size: 14px; } + @media (min-width: 768px) { + code { + font-size: 16px; } } + +pre > code { + display: block; + padding: 4px 8px; } + +figure > pre { + margin-bottom: 0; } + +figure { + margin-top: 32px; + margin-bottom: 32px; + border: 1px solid #b3b3b3; } + figure > img { + display: block; } + +figcaption { + background-color: #f8f8f8; + font-size: 14px; + line-height: 24px; + padding: 8px 16px; } + +/*------------------------------------*\ + SITE PAGE LAYOUTS +\*------------------------------------*/ +@media (min-width: 768px) { + .ds_layout--pl-component > .ds_layout__header { + float: left; + width: calc(100% * 0.66667 - 32px); } + .ds_layout--pl-component > .ds_layout__content { + float: left; + width: calc(100% * 0.58333 - 32px); } + .ds_layout--pl-component > .ds_layout__sidebar { + clear: left; + float: left; + width: calc(100% * 0.25 - 32px); } } +.ds_layout--pl-article > .ds_layout__header { + float: left; + width: calc(100% * 0.66667 - 32px); } +.ds_layout--pl-article > .ds_layout__content { + float: left; + width: calc(100% * 0.58333 - 32px); } +.ds_layout--pl-article > .ds_layout__sidebar { + clear: left; + float: left; + width: calc(100% * 0.25 - 32px); } + +@supports (display: grid) { + @media (min-width: 768px) { + .ds_layout--pl-component { + grid-template-areas: 's s s s h h h h h h h h' 's s s s c c c c c c c c'; } + + .ds_layout--pl-article { + grid-template-areas: 's s s s h h h h h h h h' 's s s s c c c c c c c c'; } } + @media (min-width: 992px) { + .ds_layout--pl-component { + grid-template-areas: 's s s h h h h h h h . .' 's s s c c c c c c c . .'; } + .ds_layout--pl-article { + grid-template-areas: 's s s h h h h h h h . .' 's s s c c c c c c c . .'; } } } +/** + * HELPERS + */ +@media (min-width: 768px) { + .overflow--medium--1 { + margin-right: -66.66667px; } + + .overflow--medium--2 { + margin-right: -133.33333px; } + + .overflow--medium--3 { + margin-right: -200px; } + + .overflow--medium--4 { + margin-right: -266.66667px; } } +@media (min-width: 992px) { + .overflow--large--1 { + margin-right: -80px; } + + .overflow--large--2 { + margin-right: -160px; } + + .overflow--large--3 { + margin-right: -240px; } + + .overflow--large--4 { + margin-right: -320px; } } +@media (min-width: 1200px) { + .overflow--xlarge--1 { + margin-right: -96px; } + + .overflow--xlarge--2 { + margin-right: -192px; } + + .overflow--xlarge--3 { + margin-right: -288px; } + + .overflow--xlarge--4 { + margin-right: -384px; } } +/** + * COMPONENTS FROM DESIGN SYSTEM + */ +/*------------------------------------*\ + ACCORDION +\*------------------------------------*/ +.ds_accordion { + margin-top: 32px; + margin-bottom: 32px; + position: relative; } + .ds_accordion__open-all { + display: none; + float: right; + margin-bottom: 8px; + position: relative; + text-decoration: none; } + .ds_accordion__open-all + * { + clear: both; } + +h1 + .ds_accordion, h2 + .ds_accordion, h3 + .ds_accordion { + margin-top: 0; } + +.ds_accordion.js-initialised .ds_accordion__open-all { + display: block; } + +.ds_accordion-item { + border-bottom: 1px solid #ebebeb; + border-top: 1px solid #ebebeb; + /* [1] subtracting the parent's border width */ } + .ds_accordion-item__header, .ds_accordion-item__header-button { + display: block; + position: relative; + transition: background-color 0.2s, outline-color 0.2s; + z-index: 1; + outline: 0 !important; + background-color: #ffffff; + color: #0065bd; + font-size: 1rem; + line-height: 24px; + margin: 0; + padding: 15px 40px 15px 16px; + /* [1] */ + position: relative; + text-align: left; + width: 100%; } + .ds_accordion-item__header:focus, .ds_accordion-item__header-button:focus { + background-color: #fdd522; + box-shadow: inset 0 -3px #333333, inset 0 -3px #333333; } + .ds_accordion-item__header:hover:not(:focus), .ds_accordion-item__header-button:hover:not(:focus) { + background-color: #d9effc; } + .ds_accordion-item__header:hover:not(:focus), .ds_accordion-item__header-button:hover:not(:focus) { + color: #00437e; } + .ds_accordion-item--open .ds_accordion-item__header-button:not(:focus):not(:hover) { + background-color: #f8f8f8; + color: #333333; } + .ds_accordion-item__title { + font-size: 1rem; + line-height: 24px; + margin-bottom: 0; } + .ds_accordion-item__label { + cursor: pointer; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; } + .ds_accordion-item__indicator { + content: ''; + display: inline-block; + height: 2em; + transition: transform 0.2s, top 0.2s; + width: 2em; + /* + * [1] for IE11 support, use image without clip path + */ + background-image: url(../images/icons/icons.stack.svg#expand_more); + right: 14px; + position: absolute; + pointer-events: none; + top: 11px; } + @supports (-webkit-mask-image: url()) or (mask-image: url()) { + .ds_accordion-item__indicator { + background-color: currentColor; + background-image: none; + -webkit-mask-image: url(../images/icons/icons.stack.svg#expand_more); + mask-image: url(../images/icons/icons.stack.svg#expand_more); } } + .ds_accordion-item__body { + display: none; + padding: 24px 40px 40px 16px; } + .ds_accordion-item__body > :last-child { + margin-bottom: 0; } + .ds_accordion-item__control:checked ~ .ds_accordion-item__body { + display: block; } + .ds_accordion-item__control:checked ~ .ds_accordion-item__header { + background-color: #f8f8f8; + color: #333333; } + .ds_accordion-item__control:checked ~ .ds_accordion-item__header .ds_accordion-item__indicator, .ds_accordion-item__control:checked ~ .ds_accordion-item__header-button .ds_accordion-item__indicator { + transform: rotateZ(180deg); } + .ds_accordion-item__control:focus ~ .ds_accordion-item__header, .ds_accordion-item__control:focus:hover ~ .ds_accordion-item__header { + background: #fdd522; + box-shadow: 0 3px #333333; + color: #333333; + z-index: 2; } + .ds_accordion-item + .ds_accordion-item { + margin-top: -1px; } + +.ds_accordion.js-initialised .ds_accordion-item__body { + overflow: hidden; + padding: 0 40px 0 16px; + transition: max-height 0.2s, padding 0.2s; } + @media (min-width: 768px) { + .ds_accordion.js-initialised .ds_accordion-item__body { + padding-right: 100px; } } +.ds_accordion.js-initialised .ds_accordion-item__control:checked ~ .ds_accordion-item__body { + padding-bottom: 32px; + padding-top: 24px; } + +@media (min-width: 768px) { + .ds_accordion-item__header, .ds_accordion-item__header-button, .ds_accordion-item__body { + padding-right: 100px; } + .ds_accordion-item__indicator { + top: 9px; } } +/*------------------------------------*\ + ARTICLE ASIDE +\*------------------------------------*/ +.ds_article-aside { + margin-top: 32px; + margin-bottom: 32px; + font-size: 14px; + line-height: 20px; + padding-top: 24px; + position: relative; } + @media (min-width: 768px) { + .ds_article-aside { + font-size: 16px; } } + .ds_article-aside:first-child { + margin-top: 0; } + .ds_article-aside::before { + background-color: #0065bd; + content: ''; + height: 2px; + left: 0; + position: absolute; + right: 0; + top: 0; } + +@media (min-width: 768px) { + .ds_article-aside { + line-height: 24px; + padding-top: 32px; } + .ds_article-aside li { + margin-bottom: 16px; } } +/** + * [1] default aspect ratio is 16:9 + */ +.ds_aspect-box { + position: relative; + padding-bottom: calc(900%/16); + /* [1] */ } + .ds_aspect-box--square { + padding-bottom: 100%; } + .ds_aspect-box--43 { + padding-bottom: calc(300%/4); } + .ds_aspect-box--235 { + padding-bottom: calc(10000%/235); } + +.ds_aspect-box__inner { + height: 100%; + left: 0; + position: absolute; + right: 0; } + +/*------------------------------------*\ + $BACK TO TOP +\*------------------------------------*/ +.ds_back-to-top { + display: none; } + +@media only screen { + .ds_back-to-top { + bottom: 56px; + display: block; + pointer-events: none; + position: absolute; + right: 8px; + top: 100vh; + z-index: 1; + /* + [1] fallback for older browsers + [2] 56px is the button's height plus 8px spacing + */ } + .ds_back-to-top__button { + display: block; + position: relative; + transition: background-color 0.2s, outline-color 0.2s; + z-index: 1; + outline: 0 !important; + font-size: 14px; + background-color: rgba(255, 255, 255, 0.9); + font-weight: 700; + margin: 0; + min-width: 120px; + pointer-events: all; + padding: 8px 32px 8px 16px; + position: fixed; + /* [1] */ + position: sticky; + right: 8px; + top: calc(100vh - 56px); + /* [2] */ } + .ds_back-to-top__button:focus { + background-color: #fdd522; + box-shadow: inset 0 -3px #333333, inset 0 -3px #333333; } + .ds_back-to-top__button:hover:not(:focus) { + background-color: #d9effc; } } + @media only screen and (min-width: 768px) { + .ds_back-to-top__button { + font-size: 16px; } } +@media only screen { + .ds_back-to-top__icon { + position: absolute; + right: 8px; + top: 8px; } } +@media only screen and (min-width: 768px) { + .ds_back-to-top__icon { + top: 12px; } } +/*------------------------------------*\ + $BREADCRUMBS +\*------------------------------------*/ +.ds_breadcrumbs { + color: #727272; + font-size: 14px; + line-height: 24px; + padding-left: 0; + margin: 24px 0 16px; } + .ds_breadcrumbs__item { + display: inline-block; + margin-bottom: 0; + margin-left: 0; + padding: 0; } + .ds_breadcrumbs__item:not(:first-child)::before { + content: ''; + display: inline-block; + height: 1em; + transition: transform 0.2s, top 0.2s; + width: 1em; + /* + * [1] for IE11 support, use image without clip path + */ + background-image: url(../images/icons/icons.stack.svg#chevron_right); + margin: 0 -2px 0 -1px; + position: relative; + top: 3px; } + @supports (-webkit-mask-image: url()) or (mask-image: url()) { + .ds_breadcrumbs__item:not(:first-child)::before { + background-color: currentColor; + background-image: none; + -webkit-mask-image: url(../images/icons/icons.stack.svg#chevron_right); + mask-image: url(../images/icons/icons.stack.svg#chevron_right); } } + .ds_breadcrumbs__container { + padding-top: 16px; } + @media (min-width: 768px) { + .ds_breadcrumbs__container { + padding-top: 24px; } } + +.ds_reversed .ds_breadcrumbs { + color: #ffffff; } + +/*------------------------------------*\ + NOTIFICATION BANNER +\*------------------------------------*/ +.ds_notification.ds_notification--cookie { + background: #ebebeb; + color: #333333; } + +.ds_notification.ds_notification--cookie-success { + background: #428542; } + +/*------------------------------------*\ + CALLOUT +\*------------------------------------*/ +.ds_callout { + margin-top: 32px; + margin-bottom: 32px; + background: #f8f8f8; + border-left: 4px solid #0065bd; + padding: 16px 24px; } + .ds_callout__label.ds_content-label { + color: #0065bd; + font-size: 14px; } + .ds_callout__title { + font-size: 30px; + line-height: 32px; + margin-bottom: 16px; } + @media (min-width: 768px) { + .ds_callout__title { + font-size: 44px; } } + .ds_callout__label + .ds_callout__title { + margin-top: 0; } + .ds_callout__content > :last-child { + margin-bottom: 0; } + +@media (min-width: 768px) { + .ds_callout { + padding: 32px; } + .ds_callout__title { + line-height: 56px; } } +/*------------------------------------*\ + CARD +\*------------------------------------*/ +.ds_card { + background-color: #ffffff; + display: block; + padding: 0; + position: relative; + transition: background-color 0.2s, outline-color 0.2s; + z-index: 1; + box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.15); } + .ds_card > :last-child { + margin-bottom: 0; } + .ds_card--has-hover:hover { + box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25); } + .ds_card__media { + background-color: #333333; + height: 0; + margin-bottom: 0; + overflow: hidden; + padding-bottom: calc(900%/16); + pointer-events: none; + position: relative; + z-index: 1; } + .ds_card__media--235 { + padding-bottom: calc(10000%/235); } + .ds_card__image { + height: 100%; + left: 0; + position: absolute; + top: 0; } + .ds_card__content { + padding: 24px 16px; } + .ds_card__content > :first-child { + margin-top: 0; } + .ds_card .ds_card__content { + position: static; } + .ds_card__cover-link::after { + bottom: 0; + content: ""; + height: 100%; + left: 0; + position: absolute; + right: 0; + top: 0; + transition: background-color 0.2s; + z-index: 0; } + .ds_card--small { + font-size: 14px; + line-height: 24px; } + .ds_card--small h2 { + font-size: 1.105263rem; + line-height: 32px; + margin-bottom: 0; } + .ds_card--transparent { + background-color: transparent; + box-shadow: none; } + .ds_card--transparent .ds_card__content { + padding-left: 0; + padding-right: 0; } + .ds_card--padding { + padding: 16px; } + .ds_card--has-hover .ds_card__cover-link:hover::after { + box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25); } + +@supports (object-fit: contain) { + .ds_card__image { + object-fit: cover; + width: 100%; } } +@supports (mix-blend-mode: darken) { + .ds_card__cover-link { + outline: 0 !important; } + .ds_card__cover-link:focus, .ds_card__cover-link:hover { + background-color: transparent; + box-shadow: none; + text-decoration: underline; } + .ds_card__cover-link::after { + mix-blend-mode: darken; } + + .ds_card__cover-link:hover::after { + background-color: #d9effc; } + + .ds_card__cover-link:focus::after { + background-color: #fdd522; + box-shadow: inset 0 -3px #333333; + transition-duration: 0s; } } +/*------------------------------------*\ + CATEGORY HEADER +\*------------------------------------*/ +.ds_category-header { + margin-top: 16px; + margin-bottom: 32px; } + .ds_category-header__header { + margin-bottom: 32px; } + .ds_category-header__title { + color: #333333; + font-weight: 300; + margin-bottom: 8px; } + .ds_category-header__summary { + line-height: 24px; } + .ds_category-header__summary > :last-child { + margin-bottom: 8px; } + .ds_category-header__media { + display: block; + margin: 0 auto; + max-height: 360px; + max-width: 320px; } + +.ds_reversed .ds_category-header { + color: #ffffff; } + .ds_reversed .ds_category-header__title { + color: #ffffff; } + +.ds_category-header { + margin-right: -32px; + overflow: hidden; } + .ds_category-header > *[class] { + margin-right: 32px; } + @supports (display: grid) { + .ds_category-header { + display: grid; + grid-gap: 0 32px; + margin-right: 0; + overflow: visible; } + .ds_category-header > *[class] { + margin-left: 0; + margin-right: 0; + width: auto; } } + +.ds_category-header { + grid-gap: 32px 32px; } + +@media (min-width: 768px) { + .ds_category-header__header { + float: left; + width: calc(100% * 0.66667 - 32px); + margin: 40px 0; } + .ds_category-header__media-container { + float: left; + width: calc(100% * 0.33333 - 32px); } + .ds_category-header__summary { + line-height: 32px; } } +@supports (display: grid) { + .ds_category-header__header { + margin-bottom: 0; } + + @media (min-width: 768px) { + .ds_category-header { + align-items: center; + grid-template-columns: repeat(12, 1fr); } + .ds_category-header__header { + float: none; + grid-column: 1 / span 8; + margin: 40px 0; } + .ds_category-header__media-container { + float: none; + grid-column: 9 / span 4; + margin-right: 0; + max-width: 100%; } } } +/*------------------------------------*\ + CATEGORY ITEM + Navigation elements for different levels of category navigation. Includes classes for layout of these elements in a list. +\*------------------------------------*/ +.ds_category-item { + display: block; + position: relative; + transition: background-color 0.2s, outline-color 0.2s; + z-index: 1; + outline: 0 !important; + padding: 12px 16px 12px; + text-decoration: none; + transition: background-color 0.2s, border-color 0.2s; + width: 100%; } + .ds_category-item:focus { + background-color: #fdd522; + box-shadow: inset 0 -3px #333333, inset 0 -3px #333333; } + .ds_category-item:hover:not(:focus) { + background-color: #d9effc; } + .ds_category-item:hover:not(:focus) { + background: transparent; } + .ds_category-item .ds_category-item__link::after { + content: ""; + height: 100%; + left: 0px; + position: absolute; + top: 0px; + width: 100%; + z-index: 0; + transition: background-color 0.2s; } + .ds_category-item .ds_category-item__link:focus::after { + transition-duration: 0s; } + .ds_category-item .ds_category-item__link:focus:hover { + text-decoration: none; } + @supports (mix-blend-mode: darken) { + .ds_category-item .ds_category-item__link { + outline: 0; } + .ds_category-item .ds_category-item__link::after { + mix-blend-mode: darken; } + .ds_category-item .ds_category-item__link:hover::after { + background-color: #d9effc; } + .ds_category-item .ds_category-item__link:focus { + background-color: transparent; + box-shadow: none; + text-decoration: underline; } + .ds_category-item .ds_category-item__link:focus::after { + background-color: #fdd522; + box-shadow: inset 0 -3px #333333, inset 0 -3px #333333; } + .ds_category-item .ds_category-item__link:focus:hover { + text-decoration: underline; } } + .ds_category-item > :last-child { + margin-bottom: 0; } + .ds_category-item__title { + font-size: 19px; + line-height: 28px; + margin: 0 0 16px; } + @media (min-width: 768px) { + .ds_category-item__title { + font-size: 24px; } } + .ds_category-item .ds_category-item__link::after { + left: -4px; } + .ds_category-item__link { + color: #0065bd; } + .ds_category-item__link::before { + background-color: #aecce6; + bottom: 0; + content: ''; + left: -4px; + position: absolute; + top: 0; + width: 4px; } + .ds_category-item__link:focus::before { + content: none; } + .ds_category-item__link:hover::before { + background-color: #00437e; } + .ds_category-item__summary { + font-size: 14px; + color: #727272; + line-height: 24px; + margin: 0; } + @media (min-width: 768px) { + .ds_category-item__summary { + font-size: 16px; } } + .ds_category-item:hover .ds_category-item__summary { + color: #333333; } + +.ds_card > .ds_category-item { + padding-top: 24px; + padding-bottom: 24px; + position: static; } +.ds_card .ds_category-item__link::before { + left: 0; + right: 0; + bottom: 0; + top: 100%; + transition: top 0.2s; + width: 100%; } +.ds_card .ds_category-item__link:hover::before { + top: calc(100% - 4px); } +.ds_card .ds_category-item__link::after { + left: 0; } + +@media (min-width: 768px) { + .ds_category-item__title { + line-height: 32px; } + + .ds_card > .ds_category-item { + min-height: 192px; } } +/*------------------------------------*\ + CATEGORY LIST +\*------------------------------------*/ +.ds_category-list-container { + margin: 32px 0; } + +.ds_category-list { + margin-right: -32px; + overflow: hidden; + list-style-type: none; + margin-bottom: 32px; + margin-left: -8px; + margin-top: -8px; + padding: 8px; } + .ds_category-list > *[class] { + margin-right: 32px; } + @supports (display: grid) { + .ds_category-list { + display: grid; + grid-gap: 0 32px; + margin-right: 0; + overflow: visible; } + .ds_category-list > *[class] { + margin-left: 0; + margin-right: 0; + width: auto; } } + .ds_category-list > * { + margin-bottom: 32px; } + .ds_category-list--narrow > * { + margin-bottom: 12px; } + +.ds_category-list--narrow { + margin-right: -12px; + overflow: hidden; } + .ds_category-list--narrow > *[class] { + margin-right: 12px; } + @supports (display: grid) { + .ds_category-list--narrow { + display: grid; + grid-gap: 0 12px; + margin-right: 0; + overflow: visible; } + .ds_category-list--narrow > *[class] { + margin-left: 0; + margin-right: 0; + width: auto; } } + +@media (max-width: 767px) { + .ds_category-list--grid > * { + min-height: 0; } } +@media (min-width: 768px) { + .ds_category-list--grid > * { + float: left; + width: calc(100% * 0.5 - 32px); } + .ds_category-list--grid > *:nth-child(2n+1) { + clear: left; } + .ds_category-list--grid.ds_category-list--narrow > * { + margin-bottom: 12px; + margin-right: 12px; + width: calc(100% * 0.5 - 12px); } } +@media (min-width: 992px) { + .ds_category-list--grid > * { + width: calc(100% * 0.33333 - 32px); } + .ds_category-list--grid > *:nth-child(n) { + clear: none; } + .ds_category-list--grid > *:nth-child(3n+1) { + clear: left; + margin-left: 0; } + .ds_category-list--grid.ds_category-list--narrow > * { + width: calc(100% * 0.33333 - 12px); } } +@supports (display: grid) { + .ds_category-list { + grid-row-gap: 32px; + margin-left: 0; + margin-top: 0; + padding: 0; } + .ds_category-list--narrow { + grid-gap: 12px 12px; } + .ds_category-list > *[class] { + margin: 0; + width: 100%; } + + @media (min-width: 768px) { + .ds_category-list--grid { + display: grid; + grid-template-columns: 1fr 1fr; } } + @media (min-width: 992px) { + .ds_category-list--grid { + grid-template-columns: 1fr 1fr 1fr; } } } +/*------------------------------------*\ + CONTACT DETAILS +\*------------------------------------*/ +.ds_contact-details__title { + display: inline-block; + margin-bottom: 24px; + padding-top: 8px; + position: relative; } + .ds_contact-details__title::after { + background-color: #0065bd; + content: ''; + height: 4px; + left: 0; + position: absolute; + right: 0; + top: 0; } +.ds_contact-details__list dd { + margin-left: 0; } +.ds_contact-details__list dt { + font-weight: 700; } +.ds_contact-details__list dt:not(:first-child), .ds_contact-details__list dt + dd.ds_contact-details__social-item { + margin-top: 24px; } +.ds_contact-details__social-item { + margin-bottom: 8px; + padding-left: 32px; + position: relative; } +.ds_contact-details__social-icon { + height: 24px; + pointer-events: none; + position: absolute; + left: 0; + width: 24px; } + +@media (min-width: 768px) { + .ds_contact-details__social-icon { + top: 4px; } } +/*------------------------------------*\ + CONTENT LABEL +\*------------------------------------*/ +.ds_content-label { + font-size: 14px; + font-weight: 400; + line-height: 16px; + margin: 0; + text-transform: uppercase; } + @media (min-width: 768px) { + .ds_content-label { + font-size: 16px; } } + +/*------------------------------------*\ + CONTENTS NAV +\*------------------------------------*/ +.ds_contents-nav { + margin-bottom: 48px; } + .ds_contents-nav__title { + font-size: 1em; + font-weight: 400; + line-height: 24px; + margin-bottom: 16px; } + .ds_contents-nav__list { + font-size: 14px; + line-height: 24px; + list-style-type: none; + margin-left: 0; + padding-left: 32px; } + @media (min-width: 768px) { + .ds_contents-nav__list { + font-size: 16px; } } + .ds_contents-nav__item { + position: relative; } + .ds_contents-nav__item::before { + background: currentColor; + content: "—"; + height: 1px; + left: -32px; + overflow: hidden; + position: absolute; + top: 12px; + width: 20px; } + .ds_contents-nav__link.ds_current { + font-weight: 700; } + +@media (min-width: 768px) { + .ds_contents-nav { + margin-top: 8px; } + .ds_contents-nav__title { + font-size: 16px; + line-height: 32px; + margin-bottom: 8px; } } +/*------------------------------------*\ + DATE PICKER +\*------------------------------------*/ +.ds_datepicker { + position: relative; } + .ds_datepicker__dialog { + background-color: #ffffff; + box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.15); + display: none; + padding: 8px; + outline: 1px solid #b3b3b3; + outline-offset: -1px; + position: absolute; + top: 0; + transition: background-color 0.2s, outline-color 0.2s; + width: 296px; + z-index: 2; } + .ds_datepicker__dialog__header { + text-align: center; } + .ds_datepicker__dialog__header > :nth-child(1) { + position: absolute; + left: 8px; + top: 8px; } + .ds_datepicker__dialog__header > :nth-child(3) { + position: absolute; + right: 8px; + top: 8px; } + .ds_datepicker__dialog__title { + font-size: 14px; + margin: 0 !important; + text-transform: uppercase; } + @media (min-width: 768px) { + .ds_datepicker__dialog__title { + font-size: 16px; } } + .ds_datepicker__dialog__navbuttons button { + background-color: transparent; + color: #333333 !important; + font-weight: 400; + min-height: 40px; + margin: 0; + padding: 4px; + min-width: 32px; + display: inline-block; + position: relative; + transition: background-color 0.2s, outline-color 0.2s; + z-index: 1; + outline: 0 !important; } + .ds_datepicker__dialog__navbuttons button:focus { + background-color: #fdd522; + box-shadow: inset 0 -3px #333333, inset 0 -3px #333333; } + .ds_datepicker__dialog__navbuttons button:hover:not(:focus) { + background-color: #d9effc; } + .ds_datepicker__dialog__navbuttons button .ds_icon { + height: 32px; + padding: 0; + position: static; + width: 24px; } + .ds_datepicker__dialog__table tbody:focus-within { + outline: 2px solid #fdd522; } + .ds_datepicker__dialog__table td { + border: 0; + margin: 0; + outline: 0; + padding: 0; } + .ds_datepicker__dialog__table th { + font-size: 14px; + color: #727272; + font-weight: 400; } + @media (min-width: 768px) { + .ds_datepicker__dialog__table th { + font-size: 16px; } } + .ds_datepicker__dialog__table button { + background-color: transparent; + color: #333333; + font-weight: 400; + min-height: 40px; + margin: 0; + padding: 0; + min-width: 40px; + display: block; + position: relative; + transition: background-color 0.2s, outline-color 0.2s; + z-index: 1; + outline: 0 !important; } + .ds_datepicker__dialog__table button:focus { + background-color: #fdd522; + box-shadow: inset 0 -3px #333333, inset 0 -3px #333333; } + .ds_datepicker__dialog__table button:hover:not(:focus) { + background-color: #d9effc; } + .ds_datepicker__dialog__table button[disabled="true"] { + background-color: #ebebeb; + color: #333333; } + .ds_datepicker__dialog__table button.ds_datepicker__current { + outline: 2px solid #333333 !important; + outline-offset: -2px; } + .ds_datepicker__dialog__table button.ds_datepicker__current[tabindex="-1"] { + background: #f8f8f8; + color: currentColor; } + .ds_datepicker__dialog__table button.ds_datepicker__today { + font-weight: 700; } + .ds_datepicker__dialog__table button.ds_datepicker__today::after { + background-color: currentColor; + border-radius: 4px; + bottom: 6px; + content: ''; + height: 4px; + left: 50%; + margin-left: -2px; + position: absolute; + width: 4px; } + .ds_datepicker__dialog__table button.ds_selected:not(:focus) { + background-color: #333333; + color: #ffffff; } + .ds_datepicker__dialog__table-caption { + font-size: 12px; + caption-side: bottom; + margin-top: 8px; } + @media (min-width: 768px) { + .ds_datepicker__dialog__table-caption { + font-size: 14px; } } + .ds_datepicker__dialog__buttongroup { + margin-right: -8px; + overflow: hidden; + overflow: visible; } + .ds_datepicker__dialog__buttongroup > *[class] { + margin-right: 8px; } + @supports (display: grid) { + .ds_datepicker__dialog__buttongroup { + display: grid; + grid-gap: 0 8px; + margin-right: 0; + overflow: visible; } + .ds_datepicker__dialog__buttongroup > *[class] { + margin-left: 0; + margin-right: 0; + width: auto; } } + .ds_datepicker__dialog__buttongroup button { + width: calc(100% * 0.5 - 8px); + display: block; + float: left; + margin: 0; } + @supports (display: grid) { + .ds_datepicker__dialog__buttongroup { + grid-template-columns: 1fr 1fr; } } + +@media (max-width: 767px) { + .ds_datepicker__dialog { + clear: both; + position: static; } + .ds_datepicker__dialog__header { + position: relative; } + .ds_datepicker__dialog__header > :nth-child(1) { + left: 0; + top: -2px; } + .ds_datepicker__dialog__header > :nth-child(3) { + right: 0; + top: -2px; } } +/*------------------------------------*\ + HIDE THIS PAGE +\*------------------------------------*/ +.ds_has-hide-page .ds_page { + margin-top: 56px; } + +.ds_hide-page { + background-color: #ebebeb; + left: 0; + position: fixed; + right: 0; + text-align: center; + top: 0; + z-index: 1000; } + .ds_hide-page__button { + background-color: #d32205; + margin: 0; + width: 100%; } + .ds_hide-page__button:hover:not(:focus) { + background-color: #881603; } + .ds_hide-page__text { + font-size: 12px; + margin-bottom: 0; } + @media (min-width: 768px) { + .ds_hide-page__text { + font-size: 14px; } } + .ds_hide-page .js-enabled-text { + display: none; } + +@media only screen and (hover: hover) { + .js-enabled .js-enabled-text { + display: block; } + + .ds_has-hide-page .ds_page { + margin-top: 80px; } } +@media (min-width: 768px) { + .ds_hide-page { + margin-top: 32px; + margin-bottom: 32px; + background-color: rgba(255, 255, 255, 0.9); + left: auto; + outline: 1px solid #ebebeb; + outline-offset: -1px; } + @supports (position: sticky) and (display: grid) { + .ds_hide-page { + bottom: 8px; + position: sticky; } } + .ds_hide-page__text { + margin: 8px 0; } + + .ds_has-hide-page .ds_page { + margin-top: 0; } } +@supports (display: grid) { + .ds_hide-page { + width: 100%; } + @media (min-width: 768px) { + .ds_hide-page { + align-self: start; + grid-area: 1/9/3/13; + right: 8px; + top: 8px; } } + @media (min-width: 992px) { + .ds_hide-page { + grid-area: 1/10/3/13; } } } +/*------------------------------------*\ + #INSET TEXT +\*------------------------------------*/ +.ds_inset-text { + border-left: 8px solid #b3b3b3; + padding: 16px; + margin-top: 32px; + margin-bottom: 32px; } + +.ds_inset-text__text > :last-child, +.ds_inset-text > :last-child { + margin-bottom: 0; } + +@media (min-width: 768px) { + .ds_inset-text { + padding-left: 32px; + padding-right: 64px; } } +/*------------------------------------*\ + PAGE METADATA +\*------------------------------------*/ +.ds_metadata { + font-size: 14px; + line-height: 24px; + margin: 0; + overflow: hidden; } + .ds_metadata__key { + display: inline; } + .ds_metadata__key::after { + content: ':'; } + .ds_metadata__value { + display: inline; + font-weight: 700; + margin-left: 0; } + .ds_metadata__value > a { + font-weight: 400; } + +/** + * Alternative display collapsing the metadata into a single line + */ +.ds_metadata--inline { + color: #727272; + font-size: 12px; + line-height: 24px; + margin-bottom: 8px; } + @media (min-width: 768px) { + .ds_metadata--inline { + font-size: 14px; } } + .ds_metadata--inline .ds_metadata__item { + display: inline; + position: relative; } + .ds_metadata--inline .ds_metadata__item:not(:first-child) { + margin-left: 0.25em; + padding-left: 0.5em; } + .ds_metadata--inline .ds_metadata__item:not(:first-child)::before { + background: currentColor; + bottom: 2px; + content: ''; + left: 0; + position: absolute; + top: 2px; + width: 1px; } + .ds_metadata--inline .ds_metadata__value { + font-weight: 400; } + .ds_metadata--inline .ds_metadata__value.content-label { + color: #333333; + font-weight: 700; } + +/*------------------------------------*\ + NOTIFICATION BANNER +\*------------------------------------*/ +.ds_notification { + background: #333333; + color: #ffffff; + margin-bottom: 1px; + /* [1] compensate for bottom margin on parent */ } + .ds_notification--large .ds_notification__content { + padding-top: 24px; + padding-bottom: 32px; } + .ds_notification__content { + justify-content: space-between; + padding: 16px 0 15px; + /* [1] */ + position: relative; } + .ds_notification__content--has-close { + padding-right: 40px; } + .ds_notification__text { + display: inline-block; + margin-right: 16px; } + .ds_notification__text > :last-child { + margin-bottom: 0; } + .ds_notification__text:last-child { + margin-bottom: 0; } + .ds_notification__actions { + margin-bottom: -16px; + margin-top: 32px; + text-align: center; } + .ds_notification__actions > * { + margin-bottom: 16px; + margin-top: 0; + white-space: nowrap; + width: 100%; } + .ds_notification__icon { + display: block; + float: left; + height: 32px; + line-height: 0; + margin-left: -4px; + margin-top: -4px; + padding: 2px; + width: 32px; } + .ds_notification__icon + .ds_notification__text { + margin-left: 16px; } + @media (min-width: 768px) { + .ds_notification__icon + .ds_notification__text { + margin-left: 40px; } } + .ds_notification__icon--colour { + color: #fdd522; } + .ds_notification__icon--inverse { + background-color: #ffffff; + border-radius: 100px; + color: #333333; } + .ds_notification__icon--inverse.ds_notification__icon--colour { + background-color: #fdd522; } + .ds_notification__close { + background: transparent; + box-sizing: content-box; + color: currentColor; + display: none; + font-size: 14px; + height: 40px; + margin: 0; + padding: 0; + position: absolute; + right: -8px; + top: 8px; + width: 40px; + min-height: 0; + min-width: 0; } + .ds_notification__close:hover { + background-color: transparent; } + .ds_notification__close:hover:not(:focus) { + background-color: transparent; + color: currentColor; + outline: 2px solid currentColor; } + +@media (min-width: 768px) { + .ds_notification__close { + top: 12px; } + + .ds_notification__icon { + margin-top: 0; } + + .ds_notification__actions { + text-align: left; } + .ds_notification__actions > * { + width: auto; } + .ds_notification__actions > *:not(last-child) { + margin-right: 16px; } } +@supports (display: flex) { + @media (min-width: 768px) { + .ds_notification__actions { + align-items: center; + display: inline-flex; + flex-wrap: wrap; + width: auto; } + .ds_notification__actions > * { + flex-basis: auto; + flex-grow: initial; } } } +.js-enabled .ds_notification__close { + display: block; } + +/*------------------------------------*\ + ARTICLE HEADER + title block for articles +\*------------------------------------*/ +.ds_page-header { + margin: 16px 0 32px; } + .ds_page-header__title { + margin-bottom: 0; } + .ds_page-header__metadata { + margin-top: 8px; } + +@media (min-width: 768px) { + .ds_page-header { + margin-top: 32px; } + .ds_page-header__label + .ds_page-header__title { + margin-top: -8px; } } +/*------------------------------------*\ + PAGINATION +\*------------------------------------*/ +.ds_pagination { + font-size: 14px; + text-align: center; } + @media (min-width: 768px) { + .ds_pagination { + font-size: 16px; } } + .ds_pagination__list { + list-style-type: none; + margin: 0; + display: none; } + .ds_pagination__item { + display: inline-block; } + .ds_pagination__link { + display: block; + position: relative; + transition: background-color 0.2s, outline-color 0.2s; + z-index: 1; + outline: 0 !important; + line-height: 24px; + padding: 12px 8px; + text-decoration: none; + min-width: 48px; } + .ds_pagination__link:focus { + background-color: #fdd522; + box-shadow: inset 0 -3px #333333, inset 0 -3px #333333; } + .ds_pagination__link:hover:not(:focus) { + background-color: #d9effc; } + .ds_pagination__link.ds_current { + background-color: #f8f8f8; + border-bottom: 4px solid #0065bd; + padding-bottom: 12px; + pointer-events: none; } + .ds_pagination__link--text { + padding-left: 24px; + padding-right: 24px; + width: auto; } + .ds_pagination__link--ellipsis { + pointer-events: none; } + +@media (min-width: 768px) { + .ds_pagination__list { + display: block; } + .ds_pagination__load-more { + display: none; } } +@supports (display: flex) { + .ds_pagination__list { + display: flex; + justify-content: center; } + .ds_pagination__item:not(:last-child) { + margin-right: 4px; } } +/*------------------------------------*\ + PHASE BANNER +\*------------------------------------*/ +.ds_phase-banner { + font-size: 14px; + background: #ebebeb; + line-height: 24px; + padding: 16px 0; } + @media (min-width: 768px) { + .ds_phase-banner { + font-size: 16px; } } + .ds_phase-banner.no-bottom-margin { + margin-bottom: 0; } + .ds_phase-banner__content { + display: table; + margin-bottom: 0; } + .ds_phase-banner__tag { + margin-right: 1em; } + .ds_phase-banner__text { + display: table-cell; } + +@supports (display: flex) { + .ds_phase-banner__content { + align-items: baseline; + display: flex; } + .ds_phase-banner__content--stacked { + flex-direction: column; } + .ds_phase-banner__content--stacked > *:not(:last-child) { + margin-bottom: 8px; } } +/*------------------------------------*\ + SEARCH RESULT +\*------------------------------------*/ +.ds_search-result { + display: block; + position: relative; + transition: background-color 0.2s, outline-color 0.2s; + z-index: 1; + outline: 0 !important; + border-bottom: 1px solid #ebebeb; + border-width: 1px 0; + color: #333333 !important; + margin: 0 -16px; + padding: 24px 16px 23px; + position: relative; + text-decoration: none; } + .ds_search-result:focus { + background-color: #fdd522; + box-shadow: inset 0 -3px #333333, inset 0 -3px #333333; } + .ds_search-result:hover:not(:focus) { + background-color: #d9effc; } + .ds_search-result:hover:not(:focus) { + background: transparent; } + .ds_search-result .ds_search-result__link::after { + content: ""; + height: 100%; + left: 0px; + position: absolute; + top: 0px; + width: 100%; + z-index: 0; + transition: background-color 0.2s; } + .ds_search-result .ds_search-result__link:focus::after { + transition-duration: 0s; } + .ds_search-result .ds_search-result__link:focus:hover { + text-decoration: none; } + @supports (mix-blend-mode: darken) { + .ds_search-result .ds_search-result__link { + outline: 0; } + .ds_search-result .ds_search-result__link::after { + mix-blend-mode: darken; } + .ds_search-result .ds_search-result__link:hover::after { + background-color: #d9effc; } + .ds_search-result .ds_search-result__link:focus { + background-color: transparent; + box-shadow: none; + text-decoration: underline; } + .ds_search-result .ds_search-result__link:focus::after { + background-color: #fdd522; + box-shadow: inset 0 -3px #333333, inset 0 -3px #333333; } + .ds_search-result .ds_search-result__link:focus:hover { + text-decoration: underline; } } + .ds_search-result:first-of-type { + border-top: 1px solid #ebebeb; + padding-top: 23px; } + .ds_search-result__link::after { + content: ""; + height: 100%; + left: 0px; + position: absolute; + top: 0px; + width: 100%; + z-index: 0; } + .ds_search-result__label { + font-weight: 700; + text-transform: uppercase; } + .ds_search-result__date { + color: #727272; + font-weight: 400; } + .ds_search-result__title { + color: #0065bd; + margin-bottom: 8px; + margin-top: 0 !important; + transition: color 0.2s; } + .ds_search-result__summary { + margin-bottom: 0; } + +@media (min-width: 768px) { + .ds_search-result { + margin-left: 0; + margin-right: 0; } } +/*------------------------------------*\ + SEARCH RESULTS +\*------------------------------------*/ +.ds_search-suggestions { + font-size: 14px; + margin: 24px 0 24px; } + @media (min-width: 768px) { + .ds_search-suggestions { + font-size: 16px; } } + .ds_search-suggestions ul { + display: inline-block; + list-style-type: none; + margin: 0; } + .ds_search-suggestions ul li { + display: inline-block; } + .ds_search-suggestions ul li:not(:last-child)::after { + content: ','; + margin-left: -2px; } + +.ds_search-results__list { + list-style-type: none; + margin: 0 0 24px; } +.ds_search-results__pagination { + background: #ebebeb; + text-align: center; + padding: 8px 0; } + +@media (min-width: 768px) { + .ds_search-results__count { + padding-left: 16px; } + + .ds_search-suggestions { + padding-left: 16px; } + .ds_search-suggestions ul li:not(:last-child)::after { + margin-left: -3px; } } +/*------------------------------------*\ + #SEQUENTIAL NAVIGATION + previous and next buttons +\*------------------------------------*/ +.ds_sequential-nav { + margin-bottom: 56px; + margin-top: 56px; + overflow: hidden; } + +@supports (display: grid) { + .ds_sequential-nav { + overflow: initial; } } +.ds_sequential-nav__button { + display: block; + position: relative; + transition: background-color 0.2s, outline-color 0.2s; + z-index: 1; + outline: 0 !important; + background: transparent; + display: inline-block; + line-height: 24px; + padding: 12px 4px; + position: relative; + text-decoration: none; + width: 100%; } + .ds_sequential-nav__button:focus { + background-color: #fdd522; + box-shadow: inset 0 -3px #333333, inset 0 -3px #333333; } + .ds_sequential-nav__button:hover:not(:focus) { + background-color: #d9effc; } + .ds_sequential-nav__button:not([href]) { + display: none; } + .ds_sequential-nav__button > * { + pointer-events: none; } + .ds_sequential-nav__button--left::before, .ds_sequential-nav__button--right::before { + content: ''; + height: 56px; + width: 56px; + background-color: #0065bd; + background-position: center; + border-radius: 56px; + display: inline-block; + position: absolute; + top: 8px; + transition: background-color 0.2s; } + .ds_sequential-nav__button--left::after, .ds_sequential-nav__button--right::after { + color: #ffffff; + position: absolute; + top: 6px; } + .ds_sequential-nav__button--left { + padding-left: 73px; + text-align: left; } + .ds_sequential-nav__button--left::before { + left: 4px; } + .ds_sequential-nav__button--left::after { + content: ''; + display: inline-block; + height: 60px; + transition: transform 0.2s, top 0.2s; + width: 60px; + /* + * [1] for IE11 support, use image without clip path + */ + background-image: url(../images/icons/icons.stack.svg#chevron_left); + left: 0; } + @supports (-webkit-mask-image: url()) or (mask-image: url()) { + .ds_sequential-nav__button--left::after { + background-color: currentColor; + background-image: none; + -webkit-mask-image: url(../images/icons/icons.stack.svg#chevron_left); + mask-image: url(../images/icons/icons.stack.svg#chevron_left); } } + .ds_sequential-nav__button--right { + text-align: right; + float: right; + padding-right: 73px; + text-align: right; } + .ds_sequential-nav__button--right::before { + right: 4px; } + .ds_sequential-nav__button--right::after { + content: ''; + display: inline-block; + height: 60px; + transition: transform 0.2s, top 0.2s; + width: 60px; + /* + * [1] for IE11 support, use image without clip path + */ + background-image: url(../images/icons/icons.stack.svg#chevron_right); + right: 0; } + @supports (-webkit-mask-image: url()) or (mask-image: url()) { + .ds_sequential-nav__button--right::after { + background-color: currentColor; + background-image: none; + -webkit-mask-image: url(../images/icons/icons.stack.svg#chevron_right); + mask-image: url(../images/icons/icons.stack.svg#chevron_right); } } + +.ds_sequential-nav__button:hover::before { + background-color: #00437e; } + +.ds_sequential-nav__button:focus::before { + background-color: #333333; } + +.ds_sequential-nav__text { + display: inline-block; + padding-top: 24px; + position: relative; } + .ds_sequential-nav__text::before { + color: #002d54; + content: attr(data-label); + font-size: 16px; + font-weight: 700; + left: 0; + position: absolute; + right: 0; + text-transform: uppercase; + top: 0; } + +@media (min-width: 480px) { + .ds_sequential-nav__item { + width: calc(50% - 16px); } + .ds_sequential-nav__item--prev { + float: left; } + .ds_sequential-nav__item--next { + float: right; } } +@supports (display: grid) { + .ds_sequential-nav { + display: grid; + grid-gap: 32px 32px; + grid-template-areas: 'next' 'prev'; } + + .ds_sequential-nav__item { + float: none; + width: 100%; } + .ds_sequential-nav__item--prev { + grid-area: prev; } + .ds_sequential-nav__item--next { + grid-area: next; } + + @media (min-width: 480px) { + .ds_sequential-nav { + grid-template-columns: 1fr 1fr; + grid-template-areas: 'prev next'; } } } +/*------------------------------------*\ + SIDE NAVIGATION +\*------------------------------------*/ +.ds_side-navigation { + margin-top: 32px; + margin-bottom: 32px; + font-size: 14px; + border: 1px solid #ebebeb; + position: relative; + /** + * [1] vertical padding offsets the text slightly for visual balance + */ } + @media (min-width: 768px) { + .ds_side-navigation { + font-size: 16px; } } + .ds_side-navigation__expand { + display: block; + position: relative; + transition: background-color 0.2s, outline-color 0.2s; + z-index: 1; + outline: 0 !important; + background-color: #ffffff; + color: #0065bd; + cursor: pointer; + font-weight: 700; + margin: 0; + padding: 16px 40px 16px 16px; + position: sticky; + text-align: left; + text-decoration: none; + top: 0; + transition: background-color 0.2s, box-shadow 0.2s; + width: 100%; + z-index: 2; } + .ds_side-navigation__expand:focus { + background-color: #fdd522; + box-shadow: inset 0 -3px #333333, inset 0 -3px #333333; } + .ds_side-navigation__expand:hover:not(:focus) { + background-color: #d9effc; } + .ds_side-navigation__expand--shadow { + box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.15); } + .ds_side-navigation__expand:hover:not(:focus) { + background-color: #d9effc; } + .ds_side-navigation__expand:hover .side-navigation__expand-indicator { + color: #00437e; } + .ds_side-navigation__expand--shadow:focus { + box-shadow: 0 3px #333333, 0px 8px 5px rgba(0, 0, 0, 0.15); } + .ds_side-navigation__expand-indicator { + content: ''; + display: inline-block; + height: 2em; + transition: transform 0.2s, top 0.2s; + width: 2em; + /* + * [1] for IE11 support, use image without clip path + */ + background-image: url(../images/icons/icons.stack.svg#expand_more); + right: 14px; + position: absolute; + top: 14px; } + @supports (-webkit-mask-image: url()) or (mask-image: url()) { + .ds_side-navigation__expand-indicator { + background-color: currentColor; + background-image: none; + -webkit-mask-image: url(../images/icons/icons.stack.svg#expand_more); + mask-image: url(../images/icons/icons.stack.svg#expand_more); } } + .ds_side-navigation #show-side-navigation:focus ~ .ds_side-navigation__expand { + background: #fdd522; + box-shadow: 0 3px #333333; + color: #333333; + transition-duration: 0s; } + .ds_side-navigation #show-side-navigation:checked ~ .ds_side-navigation__expand .ds_side-navigation__expand-indicator { + transform: rotateZ(180deg); } + .ds_side-navigation #show-side-navigation:checked ~ .ds_side-navigation__expand:not(:focus):not(:hover) { + background-color: #f8f8f8; + color: #333333; } + #show-side-navigation:checked ~ .ds_side-navigation__list { + display: block; } + .ds_side-navigation__list { + list-style-type: none; + margin: 8px 16px; } + .ds_side-navigation__list .ds_side-navigation__list { + margin: 0 0 0 16px; } + .ds_side-navigation__item { + position: relative; + margin-bottom: 0; } + .ds_side-navigation__item--disabled { + text-decoration: line-through; } + .ds_side-navigation__link { + display: block; + position: relative; + transition: background-color 0.2s, outline-color 0.2s; + z-index: 1; + outline: 0 !important; + margin-bottom: 2px; + padding: 12px 40px 10px 16px; + /* [1] */ + position: relative; + text-decoration: none; } + .ds_side-navigation__link:focus { + background-color: #fdd522; + box-shadow: inset 0 -3px #333333, inset 0 -3px #333333; } + .ds_side-navigation__link:hover:not(:focus) { + background-color: #d9effc; } + .ds_side-navigation__link:hover, .ds_side-navigation__link.ds_current { + position: relative; } + .ds_side-navigation__link:hover::before, .ds_side-navigation__link.ds_current::before { + background: #0065bd; + bottom: 0; + content: ''; + position: absolute; + left: 0; + top: 0; + width: 2px; } + .ds_side-navigation__link:focus { + box-shadow: 0 3px #333333; + z-index: 2; } + .ds_side-navigation__link:focus::before { + content: none; } + .ds_side-navigation__link.ds_current { + background-color: #f8f8f8; } + .ds_side-navigation__link.ds_current:hover { + background-color: #f8f8f8; } + .ds_side-navigation__link--inactive { + pointer-events: none; + background-color: #ebebeb; } + .ds_side-navigation__list .ds_side-navigation__list .ds_side-navigation__list .ds_side-navigation__link { + padding-left: 24px; } + .ds_side-navigation__list .ds_side-navigation__list .ds_side-navigation__list .ds_side-navigation__link::before { + background: #ebebeb; + bottom: 12px; + content: ''; + left: 12px; + position: absolute; + right: 100%; + width: 4px; + top: 12px; } + .ds_side-navigation__list .ds_side-navigation__list .ds_side-navigation__list .ds_side-navigation__link:hover::before, .ds_side-navigation__list .ds_side-navigation__list .ds_side-navigation__list .ds_side-navigation__link:focus::before, .ds_side-navigation__list .ds_side-navigation__list .ds_side-navigation__list .ds_side-navigation__link.ds_current::before { + background: #0065bd; } + +@media (max-width: 767px) { + .js-initialised.ds_side-navigation > .ds_side-navigation__list { + margin: 0 16px; + max-height: 0; + overflow: hidden; + transition: max-height 0.2s, padding 0.2s; } + + .js-initialised.ds_side-navigation #show-side-navigation:checked ~ .ds_side-navigation__list { + padding-bottom: 8px; + padding-top: 8px; } } +@media (min-width: 768px) { + .ds_side-navigation { + border-width: 0; + line-height: 24px; } + .ds_side-navigation__expand { + display: none; } + .ds_side-navigation__list { + display: block !important; + margin: 0; + max-height: unset !important; } + .ds_side-navigation #show-side-navigation { + display: none; } } +/* + SITE NAVIGATION + containing site-navigation and mobile equivalent +*/ +.ds_site-navigation { + font-size: 14px; + clear: both; + display: none; } + @media (min-width: 768px) { + .ds_site-navigation { + font-size: 16px; } } + .ds_site-navigation__list { + display: flex; + flex-wrap: wrap; + list-style-type: none; + margin: 0 0 0 -16px; } + .ds_site-navigation__item { + display: inline-block; + margin-bottom: 0; } + .ds_site-navigation__item:not(:last-child) { + margin-right: 1px; } + .ds_site-navigation__link { + position: relative; + transition-duration: 0s !important; + color: currentColor; + display: block; + padding: 8px 16px; + text-decoration: none; + white-space: nowrap; } + .ds_site-navigation__link:hover:not(:focus) { + background: transparent; + outline-color: transparent; } + .ds_site-navigation__link::after { + background-color: currentColor; + bottom: -5px; + content: ''; + height: 1px; + left: 50%; + opacity: 0; + position: absolute; + right: 50%; + transition: left 0.2s, right 0.2s, opacity 0.2s; } + .ds_site-navigation__link:hover::after { + left: 0; + opacity: 1; + right: 0; } + .ds_site-navigation__link:focus { + box-shadow: 0 3px #333333; + outline: none; + padding-bottom: 5px; } + .ds_site-navigation__link:focus::after { + content: none; } + .ds_site-navigation__link:focus { + position: relative; + z-index: 1; } + .ds_site-navigation__link:hover:not(:focus) { + background-color: #d9effc; } + .ds_site-navigation__link::after { + bottom: 0; + height: 3px; } + .ds_site-navigation__link:hover::after, .ds_site-navigation__link:focus::after { + left: 16px; + right: 16px; } + .ds_site-navigation__link.ds_current:not(:focus):not(:hover) { + background-color: #f8f8f8; } + .ds_site-navigation__link.ds_current:not(:focus):not(:hover)::after { + background-color: #0065bd; + left: 16px; + opacity: 1; + right: 16px; } + +span.ds_site-navigation__link.ds_current { + pointer-events: none; } + +.ds_reversed .ds_site-navigation .ds_site-navigation__link:hover:not(.ds_current) { + background-color: #00437e; + color: #d9effc; } +.ds_reversed .ds_site-navigation .ds_site-navigation__link.ds_current { + background-color: transparent; + color: #d9effc; } + .ds_reversed .ds_site-navigation .ds_site-navigation__link.ds_current::after { + background-color: currentColor; } + +.js-toggle-menu, +.js-close-menu { + display: none; } + +.js-enabled .ds_mobile-navigation { + display: none; + position: fixed; } +.js-enabled .js-toggle-menu, +.js-enabled .js-close-menu { + display: block; } +.js-enabled .ds_mobile-navigation__button { + position: absolute; + right: 0; + top: 0; } +.js-enabled .ds_mobile-navigation { + position: absolute; } +.js-enabled .ds_mobile-navigation.menu-is-open { + display: block; } + +.ds_mobile-navigation { + box-sizing: border-box; + left: 0; + margin: 0; + overflow: auto; + right: 0; + z-index: 10; } + .ds_mobile-navigation__button { + display: block; + position: relative; + transition: background-color 0.2s, outline-color 0.2s; + z-index: 1; + outline: 0 !important; + background-color: transparent; + display: none; + color: #0065bd; + font-weight: 400; + height: 100%; + margin: 0; + padding: 0 16px; } + .ds_mobile-navigation__button:focus { + background-color: #fdd522; + box-shadow: inset 0 -3px #333333, inset 0 -3px #333333; } + .ds_mobile-navigation__button:hover:not(:focus) { + background-color: #d9effc; } + .ds_mobile-navigation__button--open { + background-color: #f8f8f8; + color: #0065bd; } + .ds_mobile-navigation__button--open .ds_site-header__control-icon { + display: none; } + .ds_mobile-navigation__button--open .ds_site-header__control-icon--close { + display: inline; } + .ds_mobile-navigation__button:hover { + color: #00437e; } + .ds_mobile-navigation__button:focus { + color: #00437e; } + .ds_mobile-navigation__backdrop { + background: rgba(255, 255, 255, 0.8) !important; + bottom: 0; + left: 0; + margin: 0; + position: fixed; + right: 0; + top: 0; + transition-duration: 0.2s; + width: 100%; + z-index: 1; } + .ds_mobile-navigation__backdrop::after { + background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), transparent); + content: ''; + height: 11px; + left: 0; + position: absolute; + right: 0; + top: 0; } + .ds_mobile-navigation__content { + background: #f8f8f8; + overflow: hidden; + padding: 0 16px; } + .ds_mobile-navigation__block { + margin: 24px 0; } + .ds_mobile-navigation__list { + list-style-type: none; + margin: 0 0 8px; } + .ds_mobile-navigation__item { + margin: 0; } + .ds_mobile-navigation__item:not(:last-child) { + border-bottom: 1px solid #b3b3b3; } + .ds_mobile-navigation__link { + color: #333333; + display: block; + padding: 16px 16px; + text-decoration: none; } + .ds_mobile-navigation__link:focus { + border-left: 4px solid #0065bd; + box-shadow: 0 4px #333333; + outline: none; + padding-left: 12px; + position: relative; } + .ds_mobile-navigation__link:hover { + border-left: 4px solid #0065bd; + padding-left: 12px; } + .ds_mobile-navigation__link.ds_current { + background-color: #f8f8f8; + border-left: 4px solid #0065bd; + padding-left: 12px; } + +@media (max-width: 767px) { + html.menu-is-open, + html.menu-is-open body { + overflow-y: hidden; + position: relative; } } +@media (min-width: 768px) { + .ds_site-navigation { + display: block; } + + .ds_mobile-navigation, + .ds_mobile-navigation__button { + display: none !important; } } +/*------------------------------------*\ + BRANDING +\*------------------------------------*/ +.ds_site-branding__logo { + height: 32px; } +.ds_site-branding__logo-image { + height: 100%; + pointer-events: none; } +.ds_site-branding__link { + color: currentColor; + display: inline-block; + position: relative; + text-decoration: none; + position: relative; + transition-duration: 0s !important; } + .ds_site-branding__link:hover:not(:focus) { + background: transparent; + outline-color: transparent; } + .ds_site-branding__link::after { + background-color: currentColor; + bottom: -5px; + content: ''; + height: 2px; + left: 50%; + opacity: 0; + position: absolute; + right: 50%; + transition: left 0.2s, right 0.2s, opacity 0.2s; } + .ds_site-branding__link:hover::after { + left: 0; + opacity: 1; + right: 0; } +.ds_site-branding__logo + .ds_site-branding__title { + margin-top: 16px; } +.ds_site-branding__title { + font-weight: 300; } + +@media (min-width: 768px) { + .ds_site-branding { + padding: 8px 0; + /* + * [1] magic number: maximum we can accommodate in the branding content area for two-line titles + */ } + .ds_site-branding__link { + margin-bottom: 0; } + .ds_site-branding__logo, .ds_site-branding__title { + float: left; } + .ds_site-branding__logo { + height: 40px; + max-height: unset; } + .ds_site-branding__logo:not(:last-child)::before { + background: #0065bd; + bottom: 0; + content: ''; + position: absolute; + right: -24px; + top: 0; + width: 2px; + pointer-events: none; } + .ds_site-branding__logo + .ds_site-branding__title { + margin-top: 0; } + .ds_site-branding__title { + font-size: 19px; + line-height: 31px; + /* [1] */ + /* centering items without display: grid */ + display: table; + height: 40px; + margin-left: 48px; } + .ds_site-branding__title > * { + display: table-cell; + vertical-align: middle; } } +.ds_reversed .ds_site-branding .ds_site-branding__logo { + color: #ffffff; } + .ds_reversed .ds_site-branding .ds_site-branding__logo:not(:last-child)::before { + background-color: #ffffff; } + +@supports (display: grid) { + .ds_site-branding { + display: grid; + grid-gap: 0; } + + @media (min-width: 768px) { + .ds_site-branding { + align-items: center; + grid-template-columns: min-content auto; + grid-column-gap: 50px; } + .ds_site-branding__logo, .ds_site-branding__title { + float: none; } + .ds_site-branding__title { + /* override gridless fallback */ + display: block; + height: auto; + margin-left: 0; } + .ds_site-branding__title > * { + display: block; } } } +/*------------------------------------*\ + SITE FOOTER +\*------------------------------------*/ +.ds_site-footer { + font-size: 14px; + background-color: #0065bd; + line-height: 24px; + padding-bottom: 32px; + padding-top: 24px; + /* [1] subtracting the border width */ } + @media (min-width: 768px) { + .ds_site-footer { + font-size: 16px; } } + .ds_site-footer__site-items { + border-bottom: 1px solid rgba(255, 255, 255, 0.2); + font-size: 14px; + font-weight: 700; + list-style-type: none; + margin: 0 0 23px; + /* [1] */ + padding-bottom: 16px; } + .ds_site-footer__copyright-logo { + display: block; + margin-bottom: 8px; + width: 32px; + position: relative; + transition-duration: 0s !important; } + .ds_site-footer__copyright-logo:hover:not(:focus) { + background: transparent; + outline-color: transparent; } + .ds_site-footer__copyright-logo::after { + background-color: currentColor; + bottom: -5px; + content: ''; + height: 1px; + left: 50%; + opacity: 0; + position: absolute; + right: 50%; + transition: left 0.2s, right 0.2s, opacity 0.2s; } + .ds_site-footer__copyright-logo:hover::after { + left: 0; + opacity: 1; + right: 0; } + .ds_site-footer__copyright-logo img { + width: 100%; } + .ds_site-footer__org { + max-width: 160px; + position: relative; } + .ds_site-footer__org-link { + display: block; + position: relative; + transition-duration: 0s !important; } + .ds_site-footer__org-link:hover:not(:focus) { + background: transparent; + outline-color: transparent; } + .ds_site-footer__org-link::after { + background-color: currentColor; + bottom: -5px; + content: ''; + height: 1px; + left: 50%; + opacity: 0; + position: absolute; + right: 50%; + transition: left 0.2s, right 0.2s, opacity 0.2s; } + .ds_site-footer__org-link:hover::after { + left: 0; + opacity: 1; + right: 0; } + .ds_site-footer .ds_site-footer__org-link, + .ds_site-footer .ds_site-footer__copyright-logo { + color: currentColor !important; } + +.ds_reversed.ds_site-footer { + color: #ffffff; } + +.ds_site-items__item { + display: inline-block; } + .ds_site-items__item:not(:last-child) { + margin-right: 20px; } + +@media (min-width: 768px) { + .ds_site-footer__copyright { + padding-left: 48px; + position: relative; } + .ds_site-footer__copyright-logo { + position: absolute; + left: 0; + top: 2px; } + .ds_site-footer__content { + margin-right: -32px; + overflow: hidden; } + .ds_site-footer__content > *[class] { + margin-right: 32px; } + @supports (display: grid) { + .ds_site-footer__content { + display: grid; + grid-gap: 0 32px; + margin-right: 0; + overflow: visible; } + .ds_site-footer__content > *[class] { + margin-left: 0; + margin-right: 0; + width: auto; } } + .ds_site-footer__copyright { + float: left; + width: calc(100% * 0.66667 - 32px); } + .ds_site-footer__org { + float: right; + width: calc(100% * 0.25 - 32px); } + + @supports (display: grid) { + .ds_site-footer__content { + display: grid; + grid-gap: 0 32px; + grid-template-columns: repeat(12, 1fr); + grid-template-areas: 'a a a a a a a a a a a a' 'b b b b b b b b . c c c'; } + .ds_site-footer__site-items { + grid-area: a; } + .ds_site-footer__copyright { + grid-area: b; } + .ds_site-footer__org { + grid-area: c; + justify-self: right; + width: 100%; } + .ds_site-footer__org-logo { + display: block; + width: 100%; } } } +/*------------------------------------*\ + SITE HEADER +\*------------------------------------*/ +/* [1] compensates for border */ +.ds_site-header { + background-color: #ffffff; + border-bottom: 1px solid #ebebeb; + margin-bottom: -1px; + /* [1] */ + position: relative; } + .ds_site-header::before { + background: #0065bd; + display: block; + content: ''; + height: 4px; } + .ds_site-header__top { + position: relative; } + .ds_site-header__content { + overflow: hidden; + padding: 8px 0; + transition: min-height 0.2s; } + @supports (display: grid) { + .ds_site-header__content { + overflow: visible; } } + .ds_site-header__content > .ds_site-branding { + float: left; } + .ds_site-header__content > .ds_site-header__search { + float: right; } + .ds_site-header__controls { + display: block; } + .ds_site-header__control { + cursor: pointer; + height: 24px; + margin-right: -16px; + padding: 16px; + display: block; + position: relative; + transition: background-color 0.2s, outline-color 0.2s; + z-index: 1; + outline: 0 !important; } + .ds_site-header__control:focus { + background-color: #fdd522; + box-shadow: inset 0 -3px #333333, inset 0 -3px #333333; } + .ds_site-header__control:hover:not(:focus) { + background-color: #d9effc; } + .ds_site-header__control-icon { + height: 24px; + width: 24px; } + .ds_site-header__control-icon--close { + display: none; } + .ds_site-header__control-text { + float: left; + margin-right: 8px; + pointer-events: none; } + .ds_site-header__search { + display: none; } + +/* variant with the top colour bar set to a gradient of site brand colours */ +.ds_site-header--gradient::before { + background: linear-gradient(to right, #0065bd, #002d54); } + +/* variant with a drop shadow instead of a bottom border */ +.ds_site-header--shadow { + border-bottom: 0; } + .ds_site-header--shadow::after { + background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), transparent); + bottom: -11px; + content: ''; + left: 0; + position: absolute; + right: 0; + top: 100%; } + +/* variant with a solid-colour background and reversed branding */ +.ds_site-header.ds_reversed { + background-color: #0065bd; + color: #ffffff; } + .ds_site-header.ds_reversed:not(.ds_site-header--gradient)::before { + content: none; } + .ds_site-header.ds_reversed .ds_site-header__navigation { + border-top: 1px solid #002d54; } + +@supports (display: flex) { + .ds_site-header__content { + align-items: center; + display: flex; + justify-content: space-between; } } +@media (min-width: 768px) { + .ds_site-header__controls { + display: none; } + + .ds_site-header__search { + display: block; } + .ds_site-header__search .ds_site-search__input { + float: right; } + + .ds_site-header__branding { + max-width: calc(2/3 * 100% - 32px); } + + /* [1] compensates for border */ + .ds_site-header__navigation { + border-top: 1px solid #ebebeb; + margin-top: -1px; + /* [1] */ } } +/*------------------------------------*\ + SEARCH BOX +\*------------------------------------*/ +.ds_site-search { + box-sizing: border-box; + color: #333333; + min-height: 48px; } + .ds_site-search__input[type=text] { + background: #ebebeb; + border-width: 0; + margin-bottom: 0; + min-height: 48px; + padding-left: 20px; } + .ds_site-search__input[type=text]:focus { + box-shadow: inset 0 0 0 4px; } + .ds_site-search--large { + margin-bottom: 48px; } + +@media (min-width: 768px) { + .ds_site-search { + min-height: 48px; } + .ds_site-search__button { + height: 48px; + width: 48px; } } +.ds_reversed .ds_site-search .ds_site-search__button { + background-color: #002d54; } + +@media (max-width: 767px) { + .ds_site-search--collapsible { + position: absolute; + right: 16px; + left: calc(100% - 16px); + transition: left 0.2s; } + .ds_site-search--collapsible .ds_site-search__input[type="text"] { + opacity: 0; + padding: 0; + transition: all 0.2s; } + + .ds_site-search--expanded { + left: 16px; } + .ds_site-search--expanded .ds_site-search__input[type="text"] { + opacity: 1; + padding: 0 48px 0 24px; } } +/*------------------------------------*\ + #SKIP LINKS +\*------------------------------------*/ +.ds_skip-links { + position: relative; } + +.ds_skip-links__list { + list-style-type: none; + margin: 0; } + +.ds_skip-links__item { + margin: 0; } + +.ds_skip-links__link { + clip: rect(1px 1px 1px 1px); + display: block; + height: 1px; + left: 10px; + overflow: hidden; + padding: 7px; + position: absolute; + top: 10px; + width: 1px; } + .ds_skip-links__link:focus { + clip: auto; + height: auto; + width: auto; + z-index: 10000; } + +/*------------------------------------*\ + TABLES +\*------------------------------------*/ +.ds_table { + width: 100%; } + .ds_table tbody, + .ds_table thead, + .ds_table tfoot { + border: 1px solid #b3b3b3; } + .ds_table th { + background-color: #ebebeb; + font-weight: bold; + position: relative; + text-align: left; } + .ds_table th, + .ds_table td { + vertical-align: top; } + .ds_table th[colspan] { + border: 1px solid #b3b3b3; } + .ds_table th:not(:first-child)::before { + border-left: 1px solid #b3b3b3; + bottom: 8px; + content: ''; + left: -1px; + position: absolute; + top: 8px; } + .ds_table tr > * { + padding: 8px 16px 8px 8px; } + .ds_table tr { + border-bottom: 1px solid #ebebeb; } + .ds_table tr:last-child { + border-bottom-color: #b3b3b3; } + .ds_table thead > tr:last-child { + border-bottom-width: 0; } + .ds_table tbody > tr > td { + background-color: #ffffff; } + .ds_table tbody > tr:nth-child(even) > td { + background-color: #f8f8f8; } + .ds_table caption { + font-size: 16px; + font-weight: 700; + line-height: 21px; + margin-bottom: 14px; + text-align: left; } + @media (min-width: 768px) { + .ds_table caption { + font-size: 19px; + line-height: 28px; } } + +@media (max-width: 767px) { + .ds_table.js-is-scrolling[data-smallscreen="scrolling"] { + display: block; + max-width: 100%; + overflow-x: auto; } + .ds_table.js-is-scrolling[data-smallscreen="scrolling"] tr > :first-child { + left: 0; + position: sticky; + z-index: 1; } + .ds_table.js-is-scrolling[data-smallscreen="scrolling"] caption { + display: block; + left: 0; + position: sticky; } + .ds_table.js-is-scrolling[data-smallscreen="scrolling"] tr > :first-child::after { + background: linear-gradient(90deg, rgba(0, 0, 0, 0.07), transparent); + content: ''; + height: 100%; + position: absolute; + right: -10px; + top: 0; + width: 10px; } + .ds_table.js-is-scrolling[data-smallscreen="scrolling"] tr > :first-child::before { + background: #b3b3b3; + content: ''; + height: 100%; + left: -1px; + position: absolute; + top: 0; + width: 1px; } + .ds_table.js-is-scrolling[data-smallscreen="scrolling"] tr > th:first-child { + background: #ebebeb; } + .ds_table.js-is-scrolling[data-smallscreen="scrolling"] tr > td:first-child { + border-right: 1px solid #ebebeb; } + + .js-enabled .ds_table[data-smallscreen="boxes"] thead { + clip: rect(1px 1px 1px 1px); + clip: rect(1px, 1px, 1px, 1px); + height: 1px; + width: 1px; + overflow: hidden; + position: absolute !important; } + .js-enabled .ds_table[data-smallscreen="boxes"] { + border: 0; } + .js-enabled .ds_table[data-smallscreen="boxes"] tbody { + border: none; } + .js-enabled .ds_table[data-smallscreen="boxes"] tr { + border: 0; + display: block; + margin-bottom: 16px; } + .js-enabled .ds_table[data-smallscreen="boxes"] tr > * { + display: block; + overflow: auto; + padding-left: calc(50% - 8px); + position: relative; } + .js-enabled .ds_table[data-smallscreen="boxes"] tr > * { + border: 1px solid #b3b3b3; } + .js-enabled .ds_table[data-smallscreen="boxes"] tr > td:not(:last-child) { + border-bottom-color: #ebebeb; } + .js-enabled .ds_table[data-smallscreen="boxes"] tr > th:last-child { + border-width: 0; + margin-top: 32px; } + .js-enabled .ds_table[data-smallscreen="boxes"] tr > td:not(:first-child) { + border-top-width: 0; } + .js-enabled .ds_table[data-smallscreen="boxes"] tr > td::before { + content: attr(data-heading); + display: block; + position: absolute; + font-weight: bold; + left: 0; + margin-left: 16px; + margin-right: 16px; + text-align: left; + width: calc(50% - 16px); } + .js-enabled .ds_table[data-smallscreen="boxes"] tr > td:first-child { + box-shadow: inset 0 4px 0 #ebebeb; + padding-top: 11px; } + .js-enabled .ds_table[data-smallscreen="boxes"] tr > td:nth-child(odd) { + background-color: #ffffff; } + .js-enabled .ds_table[data-smallscreen="boxes"] tr > td:nth-child(even) { + background-color: #f8f8f8; } } +/*------------------------------------*\ + TABS +\*------------------------------------*/ +.ds_tab-container { + border: 1px solid #b3b3b3; } + +.ds_tab__content { + display: none; + padding: 32px; } + .ds_tab__content > :last-child { + margin-bottom: 0; } +.ds_tab__label { + color: #0065bd; + text-decoration: underline; + outline: 2px solid transparent; + transition: color 0.2s, background-color 0.2s, outline 0.2s; + background: #ebebeb; + border-bottom: 0; + border-top: 1px solid #ffffff; + display: block; + font-weight: 400; + margin: 0; + outline-width: 1px; + padding: 15px 32px 16px; + text-align: left; + transition: color 0.2s, background-color 0.2s; + width: 100%; } + .ds_tab__label:hover { + background-color: #d9effc; + color: #00437e; + outline: 2px solid #d9effc; + transition-duration: 0.2s; } + .ds_tab__label:focus { + background-color: #fdd522; + box-shadow: -2px 5px #333333, 2px 5px #333333; + color: #333333; + outline: 2px solid #fdd522; + outline-offset: 0; + text-decoration: none; + transition-duration: 0s; } + .ds_tab__label > svg { + fill: currentColor; } + .ds_tab__label:focus { + position: relative; + z-index: 1; + outline-width: 0; } + .ds_tab__label:hover { + outline-width: 0; } +.ds_tab__header:first-child > .ds_tab__label { + border-top: 0; + padding-top: 16px; } +.ds_tab__radio { + clip: rect(1px 1px 1px 1px); + /* IE6, IE7 */ + clip: rect(1px, 1px, 1px, 1px); + height: 1px; + width: 1px; + overflow: hidden; + position: absolute !important; } +.ds_tab__radio:checked + .ds_tab__header + .ds_tab__content, .ds_tab__header.ds_current + .ds_tab__content { + display: block; } +.ds_tab__radio:checked + .ds_tab__header > .ds_tab__label:not(:focus), .ds_tab__header.ds_current > .ds_tab__label:not(:focus) { + background: #ffffff; + color: #333333; + pointer-events: none; + position: relative; + text-decoration: none; } +.ds_tab__radio + .ds_tab__header > .ds_tab__label::before, .ds_tab__header > .ds_tab__label::before { + background: #0065bd; + bottom: 0; + left: 0; + position: absolute; + top: 0; + width: 4px; } +.ds_tab__radio:checked + .ds_tab__header > .ds_tab__label::before, .ds_tab__header.ds_current > .ds_tab__label::before { + content: ''; } +.ds_tab__radio .ds_tab__header > .ds_tab__label:focus, .ds_tab__header > .ds_tab__label:focus { + box-shadow: none; } + .ds_tab__radio .ds_tab__header > .ds_tab__label:focus::before, .ds_tab__header > .ds_tab__label:focus::before { + content: ''; + background-color: #333333; } + +@supports (display: grid) { + @media (min-width: 768px) { + .ds_tab-container { + border: 0; + display: grid; + grid-template-areas: 't1 t2 t3 t4 t5 .' 'tc tc tc tc tc tc'; + grid-gap: 0 8px; + grid-template-columns: repeat(5, minmax(min-content, max-content)) auto; } + .ds_tab-container--2 { + grid-template-areas: 't1 t2 .' 'tc tc tc'; + grid-template-columns: repeat(2, minmax(min-content, max-content)) auto; } + .ds_tab-container--3 { + grid-template-areas: 't1 t2 t3 .' 'tc tc tc tc'; + grid-template-columns: repeat(3, minmax(min-content, max-content)) auto; } + .ds_tab-container--4 { + grid-template-areas: 't1 t2 t3 t4 .' 'tc tc tc tc tc'; + grid-template-columns: repeat(4, minmax(min-content, max-content)) auto; } + .ds_tab-container--5 { + grid-template-areas: 't1 t2 t3 t4 t5 .' 'tc tc tc tc tc tc'; + grid-template-columns: repeat(5, minmax(min-content, max-content)) auto; } + .ds_tab-container--6 { + grid-template-areas: 't1 t2 t3 t4 t5 t6 .' 'tc tc tc tc tc tc tc'; + grid-template-columns: repeat(6, minmax(min-content, max-content)) auto; } + + .ds_tab__header { + align-self: stretch; } + .ds_tab__header:nth-of-type(1) { + grid-area: t1; } + .ds_tab__header:nth-of-type(3) { + grid-area: t2; } + .ds_tab__header:nth-of-type(5) { + grid-area: t3; } + .ds_tab__header:nth-of-type(7) { + grid-area: t4; } + .ds_tab__header:nth-of-type(9) { + grid-area: t5; } + .ds_tab__header:nth-of-type(11) { + grid-area: t6; } + .ds_tab__content { + border-top: 1px solid #b3b3b3; + grid-area: tc; } + .ds_tab__label { + border-left: 1px solid #ebebeb; + border-right: 1px solid #ebebeb; + border-top: 0; + height: 100%; + padding-left: 31px; + padding-right: 31px; + padding-top: 16px; } + .ds_tab__label:focus { + border-left-color: #fdd522; + border-right-color: #fdd522; } + .ds_tab__radio:checked + .ds_tab__header > .ds_tab__label:not(:focus), .ds_tab__header.ds_current > .ds_tab__label:not(:focus) { + border-left-color: #b3b3b3; + border-right-color: #b3b3b3; } + .ds_tab__radio + .ds_tab__header > .ds_tab__label::before, .ds_tab__header > .ds_tab__label::before { + background-color: #0065bd; + bottom: 100%; + left: -1px; + right: -1px; + top: -4px; + width: auto; } + .ds_tab__radio:checked + .ds_tab__header > .ds_tab__label::after, .ds_tab__header.ds_current > .ds_tab__label::after { + background: #ffffff; + bottom: -1px; + content: ''; + left: 0; + position: absolute; + right: 0; + top: 100%; } + .ds_tab__radio:checked + .ds_tab__header > .ds_tab__label:focus::after, .ds_tab__header.ds_current > .ds_tab__label:focus::after { + background-color: #fdd522; } } } +/*------------------------------------*\ + TAG +\*------------------------------------*/ +.ds_tag { + background: #0065bd; + border-radius: 2px; + color: #ffffff; + display: inline-block; + font-size: 15px; + font-weight: 700; + padding: 0 10px; + text-transform: uppercase; } + +.ds_reversed .ds_tag { + background-color: #ffffff; + color: #0065bd; } + +/*------------------------------------*\ + #WARNING TEXT +\*------------------------------------*/ +/* [1] compensate for border */ +.ds_warning-text { + border: 1px solid currentColor; + border-width: 1px 0; + font-weight: 700; + padding: 23px 16px 23px 72px; + /* [1] */ + position: relative; + margin-top: 32px; + margin-bottom: 32px; } + .ds_warning-text > :last-child { + margin-bottom: 0; } + .ds_warning-text:first-child { + margin-top: 0; } + +.ds_warning-text__icon { + background: #333333; + border-radius: 50%; + color: #ffffff; + display: inline-block; + height: 32px; + font-size: 32px; + font-weight: 700; + left: 24px; + line-height: 32px; + position: absolute; + text-align: center; + top: 20px; + width: 32px; } + @supports (-webkit-mask-image: url()) or (mask-image: url()) { + .ds_warning-text__icon::before { + content: ''; + display: block; + height: 28px; + margin: 2px; + /* + * [1] for IE11 support, use image without clip path + */ + background-image: url(../images/icons/icons.stack.svg#priority_high); } + @supports (-webkit-mask-image: url()) or (mask-image: url()) { + .ds_warning-text__icon::before { + background-color: currentColor; + background-image: none; + -webkit-mask-image: url(../images/icons/icons.stack.svg#priority_high); + mask-image: url(../images/icons/icons.stack.svg#priority_high); } } } + +.ds_warning-text__text > :last-child { + margin-bottom: 0; } + +@media (min-width: 768px) { + /* [1] compensate for border */ + .ds_warning-text { + padding: 31px 72px 31px 72px; + /* [1] */ } + + .ds_warning-text__icon { + top: 31px; } } +/** + * COMPONENTS FOR DESIGN SYSTEM SITE NOT IN DESIGN SYSTEM STYLES (YET?) + */ +/*------------------------------------*\ + #EXAMPLE +\*------------------------------------*/ +.example { + margin-top: 32px; + margin-bottom: 32px; } + +.example__iframe { + border: 0; + display: block; + width: 100%; } + +.example__pre { + background-color: #f8f8f8; + margin-bottom: 0; } + +.example__code { + background-color: transparent; + border: 0; + font-size: 0.85em; + line-height: 1.25; + width: 100%; } + +example__accordion-body--code figure { + border: 0; } + +.example__illustration { + display: block; } + +.example__link { + display: block; + position: relative; + transition: background-color 0.2s, outline-color 0.2s; + z-index: 1; + outline: 0 !important; + background-color: #f8f8f8; + display: inline-block; + font-size: 14px; + padding: 4px 16px; + position: absolute; + text-decoration: none; } + .example__link:focus { + background-color: #fdd522; + box-shadow: inset 0 -3px #333333, inset 0 -3px #333333; } + .example__link:hover:not(:focus) { + background-color: #d9effc; } + +.example__accordion { + margin-bottom: 0; + margin-top: 0; } + +.example__accordion-body--code { + padding: 0 !important; } + .example__accordion-body--code figure { + border: 0; + margin: 0; } + +/*------------------------------------*\ + #CASE STUDY + homepage +\*------------------------------------*/ +.case-studies { + display: grid; + grid-gap: 32px 32px; + grid-template-columns: repeat(2, minmax(0, 1fr)); } + +.case-study { + display: grid; + grid-gap: 32px 32px; + grid-template-columns: repeat(2, minmax(0, 1fr)); } + +.case-study__image { + background-color: #ddd; + width: 100%; + height: 144px; } + +.case-study__button { + display: block; + margin-top: 0; + width: auto; + max-width: 75%; } + +.dss_homepage-hero { + margin: 24px 0 32px; + margin-right: -32px; + overflow: hidden; } + .dss_homepage-hero__container { + background-color: #0065bd; + overflow: hidden; } + .dss_homepage-hero__cta .ds_button { + font-weight: bold; } + .dss_homepage-hero__cta :first-child { + margin-top: 0; } + .dss_homepage-hero__cta :last-child { + margin-bottom: 0; } + .dss_homepage-hero__header { + border-left: 0; + margin-bottom: 32px; + padding-left: 0; } + .dss_homepage-hero__header :last-child { + margin-bottom: 0; } + .dss_homepage-hero__title { + font-weight: 700; } + .dss_homepage-hero__summary { + font-weight: 400; + font-size: 1rem; + line-height: 24px; + margin-bottom: 32px; + padding-right: 32px; } + .dss_homepage-hero__media { + display: block; + margin: 0; + max-width: unset; + width: 100%; } + .dss_homepage-hero__media-caption { + font-size: 14px; + margin: 8px 0; } + @media (min-width: 768px) { + .dss_homepage-hero__media-caption { + font-size: 16px; } } + .dss_homepage-hero__media-link { + position: absolute; + left: 0; + right: 0; + top: 0; + bottom: 0; } + .dss_homepage-hero__media-link:hover { + outline: 2px solid #d9effc; } + .dss_homepage-hero > *[class] { + margin-right: 32px; } + @supports (display: grid) { + .dss_homepage-hero { + display: grid; + grid-gap: 0 32px; + margin-right: 0; + overflow: visible; } + .dss_homepage-hero > *[class] { + margin-left: 0; + margin-right: 0; + width: auto; } } + +@media (min-width: 768px) { + .dss_homepage-hero__header { + float: left; + width: calc(100% * 1 - 32px); } + .dss_homepage-hero__media-container { + float: left; + width: calc(100% * 0.5 - 32px); } + .dss_homepage-hero__summary { + line-height: 32px; + float: left; + width: calc(100% * 0.5 - 32px); } } +@media (min-width: 992px) { + .dss_homepage-hero__media-container { + float: left; + width: calc(100% * 0.33333 - 32px); } + .dss_homepage-hero__summary { + float: left; + width: calc(100% * 0.66667 - 32px); } } +@supports (display: grid) { + .dss_homepage-hero { + align-items: center; + grid-gap: 32px 8px; + margin: 32px 0 36px; } + .dss_homepage-hero__header, .dss_homepage-hero__summary { + margin-bottom: 0; } + + @media (min-width: 768px) { + .dss_homepage-hero { + grid-template-columns: repeat(12, 1fr); + grid-template-areas: 'h h h h h h h h h h h h' 's s s s s s m m m m m m'; } + .dss_homepage-hero__header { + float: none; + grid-area: h; } + .dss_homepage-hero__media-container { + float: none; + margin-right: 0; + max-width: 100%; + grid-area: m; } + .dss_homepage-hero__summary { + float: none; + grid-area: s; } } + @media (min-width: 992px) { + .dss_homepage-hero { + grid-template-columns: repeat(12, 1fr); + grid-template-areas: 'h h h h h h h h m m m m' 's s s s s s s s m m m m'; } } } +.dss_homepage-hero__container.ds_reversed { + color: white; } + +/*------------------------------------*\ + #SHOWCASE + homepage +\*------------------------------------*/ +.showcase__item { + font-size: calc(1400% / 19); + line-height: 24px; + margin-bottom: 32px; } + +.showcase__iframe { + border: 1px solid #ddd; + width: 100%; } + +@media (min-width: 768px) { + .showcase { + display: grid; + grid-template-columns: repeat(3, minmax(0, 1fr)); + grid-gap: 0 32px; } } +/*------------------------------------*\ + #SUB BANNER +\*------------------------------------*/ +.sub-banner { + background-color: #00437e; } + +.sub-banner__content { + display: flex; + justify-content: space-between; + margin: 0 -10px; } + +.sub-banner__link { + color: #fff; + display: inline-block; + height: 49px; + line-height: 49px; + padding: 0 10px; + text-decoration: none; } + +.sub-banner__link:hover, +.sub-banner__link:focus { + background-color: #002d54; + color: #fff; } + +.sub-banner__link:active { + background-color: #000; + color: #d9effc; + outline-width: 0; } + +.sub-banner__link--right { + margin-right: 0; } + +.link--progress { + padding-right: 49px; + position: relative; } + .link--progress:after { + content: ''; + display: inline-block; + height: 2em; + transition: transform 0.2s, top 0.2s; + width: 2em; + /* + * [1] for IE11 support, use image without clip path + */ + background-image: url(../images/icons/icons.stack.svg#chevron_right); + right: 23px; + position: absolute; + top: 18px; } + @supports (-webkit-mask-image: url()) or (mask-image: url()) { + .link--progress:after { + background-color: currentColor; + background-image: none; + -webkit-mask-image: url(../images/icons/icons.stack.svg#chevron_right); + mask-image: url(../images/icons/icons.stack.svg#chevron_right); } } + +/*------------------------------------*\ + #USERS + homepage +\*------------------------------------*/ +.users { + display: grid; + grid-gap: 0 32px; } + +.user { + align-content: stretch; + background-color: #f8f8f8; + /*colour__grey--lighter*/ + color: #333; + /*colour__text*/ + display: flex; + margin-bottom: 32px; + text-decoration: none; } + +.user:hover { + background-color: #e5f0f8; } + +.user__image { + background-color: white; + border: 1px solid #ddd; + display: inline-block; + width: 72px; + height: 72px; } + +.user__description { + display: inline-block; + flex-grow: 999; + font-size: 22px; + font-weight: 300; + min-height: 72px; + padding: 24px 16px; } + +@media (min-width: 768px) { + .users { + grid-template-columns: repeat(2, minmax(0, 1fr)); } } +@media (min-width: 992px) { + .users { + grid-template-columns: repeat(3, minmax(0, 1fr)); } } +/*------------------------------------*\ + #WELCOME + homepage +\*------------------------------------*/ +.welcome { + display: grid; + grid-gap: 32px 32px; + grid-template-areas: "heading heading video" "intro button video"; } + +.welcome__heading { + grid-area: heading; } + +.welcome__intro { + grid-area: intro; } + +.welcome__button { + align-self: end; + grid-area: button; } + +.welcome__video { + grid-area: video; + background-color: #ddd; } + +@supports (display: grid) { + .welcome__button .button { + margin-top: 0; + margin-bottom: 24px; + width: auto; } } +.highlight { + background: #ffffff; } + +.highlight .c { + color: #727272; + font-style: italic; } + +/* Comment */ +.highlight .err { + color: #d32205; + background-color: #e3d2d2; } + +/* Error */ +.highlight .k { + font-weight: bold; } + +/* Keyword */ +.highlight .o { + font-weight: bold; } + +/* Operator */ +.highlight .cm { + color: #727272; + font-style: italic; } + +/* Comment.Multiline */ +.highlight .cp { + color: #727272; + font-weight: bold; } + +/* Comment.Preproc */ +.highlight .c1 { + color: #727272; + font-style: italic; } + +/* Comment.Single */ +.highlight .cs { + color: #727272; + font-weight: bold; + font-style: italic; } + +/* Comment.Special */ +.highlight .gd { + color: #000000; + background-color: #ffdddd; } + +/* Generic.Deleted */ +.highlight .gd .x { + color: #000000; + background-color: #ffaaaa; } + +/* Generic.Deleted.Specific */ +.highlight .ge { + font-style: italic; } + +/* Generic.Emph */ +.highlight .gr { + color: #d32205; } + +/* Generic.Error */ +.highlight .gh { + color: #727272; } + +/* Generic.Heading */ +.highlight .gi { + color: #000000; + background-color: #ddffdd; } + +/* Generic.Inserted */ +.highlight .gi .x { + color: #000000; + background-color: #aaffaa; } + +/* Generic.Inserted.Specific */ +.highlight .go { + color: #b3b3b3; } + +/* Generic.Output */ +.highlight .gp { + color: #333333; } + +/* Generic.Prompt */ +.highlight .gs { + font-weight: bold; } + +/* Generic.Strong */ +.highlight .gu { + color: #b3b3b3; } + +/* Generic.Subheading */ +.highlight .gt { + color: #d32205; } + +/* Generic.Traceback */ +.highlight .kc { + font-weight: bold; } + +/* Keyword.Constant */ +.highlight .kd { + font-weight: bold; } + +/* Keyword.Declaration */ +.highlight .kp { + font-weight: bold; } + +/* Keyword.Pseudo */ +.highlight .kr { + font-weight: bold; } + +/* Keyword.Reserved */ +.highlight .kt { + color: #0065bd; + font-weight: bold; } + +/* Keyword.Type */ +.highlight .m { + color: #017878; } + +/* Literal.Number */ +.highlight .s { + color: #e5007e; } + +/* Literal.String */ +.highlight .na { + color: #428542; } + +/* Name.Attribute */ +.highlight .nl { + color: #428542; } + +/* Name.Attribute */ +.highlight .nb { + color: #0065bd; } + +/* Name.Builtin */ +.highlight .nc { + color: #0065bd; + font-weight: bold; } + +/* Name.Class */ +.highlight .no { + color: #428542; } + +/* Name.Constant */ +.highlight .ni { + color: #912688; } + +/* Name.Entity */ +.highlight .nd { + color: #d32205; } + +.highlight .ne { + color: #d32205; + font-weight: bold; } + +/* Name.Exception */ +.highlight .nf { + color: #d32205; + font-weight: bold; } + +/* Name.Function */ +.highlight .nn { + color: #333333; } + +/* Name.Namespace */ +.highlight .nt { + color: #0065bd; + font-weight: bold; } + +/* Name.Tag */ +.highlight .nv { + color: #428542; } + +/* Name.Variable */ +.highlight .nx { + color: #428542; } + +/* Name.Variable */ +.highlight .ow { + font-weight: bold; } + +/* Operator.Word */ +.highlight .w { + color: #b3b3b3; } + +/* Text.Whitespace */ +.highlight .mf { + color: #017878; } + +/* Literal.Number.Float */ +.highlight .mh { + color: #017878; } + +/* Literal.Number.Hex */ +.highlight .mi { + color: #017878; } + +/* Literal.Number.Integer */ +.highlight .mo { + color: #017878; } + +/* Literal.Number.Oct */ +.highlight .sb { + color: #e5007e; } + +/* Literal.String.Backtick */ +.highlight .sc { + color: #e5007e; } + +/* Literal.String.Char */ +.highlight .sd { + color: #e5007e; } + +/* Literal.String.Doc */ +.highlight .s2 { + color: #e5007e; } + +/* Literal.String.Double */ +.highlight .se { + color: #e5007e; } + +/* Literal.String.Escape */ +.highlight .sh { + color: #e5007e; } + +/* Literal.String.Heredoc */ +.highlight .si { + color: #e5007e; } + +/* Literal.String.Interpol */ +.highlight .sx { + color: #e5007e; } + +/* Literal.String.Other */ +.highlight .sr { + color: #5eb135; } + +/* Literal.String.Regex */ +.highlight .s1 { + color: #e5007e; } + +/* Literal.String.Single */ +.highlight .ss { + color: #912688; } + +/* Literal.String.Symbol */ +.highlight .bp { + color: #727272; } + +/* Name.Builtin.Pseudo */ +.highlight .vc { + color: #428542; } + +/* Name.Variable.Class */ +.highlight .vg { + color: #428542; } + +/* Name.Variable.Global */ +.highlight .vi { + color: #428542; } + +/* Name.Variable.Instance */ +.highlight .il { + color: #017878; } + +/* Literal.Number.Integer.Long */ +a[href=''] { + color: #d32205; + cursor: not-allowed; + pointer-events: none; } diff --git a/inst/rmarkdown/templates/data/skeleton/template_libs/sg/css/design-system-fixes.css b/inst/rmarkdown/templates/data/skeleton/template_libs/sg/css/design-system-fixes.css new file mode 100644 index 0000000..fb986b6 --- /dev/null +++ b/inst/rmarkdown/templates/data/skeleton/template_libs/sg/css/design-system-fixes.css @@ -0,0 +1,21 @@ +body { + font-size: inherit; +} + +@media (max-width: 767px) { + .ds_site-branding__logo+.ds_site-branding__title { + display: block; + } +} + +.ds_site-branding__logo+.ds_site-branding__title { + padding-left: inherit; +} + +#datatables { + font-size: 16px; +} + +#embedded-scripts { + display: none; +} diff --git a/inst/rmarkdown/templates/data/skeleton/template_libs/sg/css/layout.css b/inst/rmarkdown/templates/data/skeleton/template_libs/sg/css/layout.css new file mode 100644 index 0000000..38837ae --- /dev/null +++ b/inst/rmarkdown/templates/data/skeleton/template_libs/sg/css/layout.css @@ -0,0 +1,58 @@ +/* --------------------------------------------------------------------- */ +/* Page Layout */ +/* --------------------------------------------------------------------- */ + +@media (min-width: 768px) { + .ds_layout--pl-component > .ds_layout__header { + float: left; + width: calc(100% * 0.66667 - 32px); + } + .ds_layout--pl-component > .ds_layout__content { + float: left; + width: calc(100% * 0.58333 - 32px); + } + .ds_layout--pl-component > .ds_layout__sidebar { + clear: left; + float: left; + width: calc(100% * 0.25 - 32px); + } +} + +.ds_layout--pl-article > .ds_layout__header { + float: left; + width: calc(100% * 0.66667 - 32px); +} + +.ds_layout--pl-article > .ds_layout__content { + float: left; + width: calc(100% * 0.58333 - 32px); +} + +.ds_layout--pl-article > .ds_layout__sidebar { + clear: left; + float: left; + width: calc(100% * 0.25 - 32px); +} + +@supports (display: grid) { + + @media (min-width: 768px) { + + .ds_layout--pl-component { + grid-template-areas: "s s s s h h h h h h h h" "s s s s c c c c c c c c" !important; + } + .ds_layout--pl-article { + grid-template-areas: "h h h h h h h h h h h h" "c c c c c c c c c c c c" !important; + } + + } + + @media (min-width: 992px) { + .ds_layout--pl-component { + grid-template-areas: "s s s h h h h h h h h h" "s s s c c c c c c c c c" !important; + } + .ds_layout--pl-article { + grid-template-areas: "h h h h h h h h h h h h" "c c c c c c c c c c c c" !important; + } + } +} diff --git a/inst/rmarkdown/templates/data/skeleton/template_libs/sg/css/navbar-full.css b/inst/rmarkdown/templates/data/skeleton/template_libs/sg/css/navbar-full.css new file mode 100644 index 0000000..31dde4f --- /dev/null +++ b/inst/rmarkdown/templates/data/skeleton/template_libs/sg/css/navbar-full.css @@ -0,0 +1,94 @@ +/* --------------------------------------------------------------------- */ +/* Bootstrap navbar for desktop views */ +/* --------------------------------------------------------------------- */ + +@media (min-width: 768px){ + + .navbar { + background-color: inherit; + border: 0; + box-sizing: inherit; + clear: both; + display: block; + font-size: 16px; + margin: inherit; + margin-bottom: -8px; + margin-left: -14px; + position: inherit; + z-index: inherit; + } + + #navbar > ul { + display: flex; + flex-wrap: wrap; + float: none; + list-style-type: none; + margin-bottom: 0px; + margin-left: -16px; + margin-right: 0px; + margin-top: 0px; + } + + #navbar > ul > li > a { + color: currentcolor; + line-height: inherit; + outline: none; + padding-bottom: 8px; + padding-left: 16px; + padding-right: 16px; + padding-top: 8px; + position: relative; + text-decoration-color: currentcolor; + text-decoration-line: none; + text-decoration-style: solid; + white-space: nowrap; + } + + /* Start state highlighting and animations */ + + #navbar > ul > li > a { + transition-delay: 0s; + transition-duration: 0s; + transition-property: color, background-color, outline; + transition-timing-function: ease; + } + + #navbar > ul > li > a:hover:not(:focus) { + background-color: rgb(217, 239, 252); + color: rgb(0, 67, 126); + } + + #navbar > ul > li > a:focus { + background-color: rgb(253, 213, 34); + box-shadow: rgb(51, 51, 51) 0px 3px; + padding-bottom: 5px; + } + + #navbar > ul > li > a::after { + background-color: rgb(0, 101, 189); + bottom: 0px; + content: ""; + height: 3px; + left: 50%; + opacity: 0; + position: absolute; + right: 50%; + transition-property: left, right, opacity; + transition-delay: 0s; + transition-duration: 0.2s; + transition-timing-function: ease; + } + + #navbar > ul > li > a:hover::after { + left: 16px; + opacity: 1; + right: 16px; + } + + #navbar > ul > li > a:focus::after { + display: none; + } + + /* End state highlighting and animations */ + +} diff --git a/inst/rmarkdown/templates/data/skeleton/template_libs/sg/css/navbar-mobile.css b/inst/rmarkdown/templates/data/skeleton/template_libs/sg/css/navbar-mobile.css new file mode 100644 index 0000000..cc3c390 --- /dev/null +++ b/inst/rmarkdown/templates/data/skeleton/template_libs/sg/css/navbar-mobile.css @@ -0,0 +1,164 @@ +/* --------------------------------------------------------------------- */ +/* Bootstrap navbar for mobile views */ +/* --------------------------------------------------------------------- */ + +@media (max-width: 767px){ + + .js-enabled .navbar { + display:none; + position:fixed + } + + .js-enabled .js-toggle-menu,.js-enabled .js-close-menu{ + display:block + } + + .js-enabled div.navbar > div.container > div.navbar-header > button { + position:absolute; + right:0; + top:0 + } + + .js-enabled .navbar { + position:absolute + } + + .js-enabled .navbar.menu-is-open{ + display:block + } + + .ds_site-navigation { + display: block; + } + + .navbar-brand::after { + content: "Menu"; + display: block; + } + + div.navbar { + box-sizing: border-box; + color: #333 !important; + left: 0; + margin: 0; + overflow: auto; + right: 0; + z-index: 10; + } + + div.navbar > div.container > div.navbar-header { + color: #333 !important; + } + + /* Navbar button */ + div.navbar > div.container > div.navbar-header > button { + display: block !important; + outline: 0 !important; + background-color: transparent; + color: #0065bd; + font-weight: 400; + height: 100%; + transition: background-color .2s,outline-color .2s; + z-index: 1; + } + + div.navbar > div.container > div.navbar-header > button:focus { + background-color:#fdd522; + box-shadow: inset 0 -3px #333,inset 0 -3px #333; + } + + div.navbar > div.container > div.navbar-header > button:hover { + color:#00437e; + } + + div.navbar > div.container > div.navbar-header > button:hover:not(:focus) { + background-color: #d9effc; + } + + div.navbar > div.container > div.navbar-header > button--open { + background-color:#f8f8f8; + color:#0065bd + } + /* End navbar button */ + + .ds_mobile-navigation__backdrop{ + background:rgba(255,255,255,0.8) !important; + bottom:0; + left:0; + margin:0; + position:fixed; + right:0; + top:0; + transition-duration:.2s; + width:100%; + z-index:1 + } + + .ds_mobile-navigation__backdrop::after{ + background:linear-gradient(to bottom, rgba(0,0,0,0.1), transparent); + content:''; + height:11px; + left:0; + position:absolute; + right:0; + top:0 + } + + div.navbar > div.container { + background: #f8f8f8; + overflow: hidden; + padding: 0 16px; + } + + div.navbar > div.container > div.navbar-collapse { + margin:24px 0; + overflow:hidden + } + + /* Navbar content */ + div.navbar > div.container > div.navbar-collapse > ul { + list-style-type:none; + margin:0 0 8px + } + + div.navbar > div.container > div.navbar-collapse > ul > li { + margin: 0; + } + + div.navbar > div.container > div.navbar-collapse > ul > li:not(:last-child) { + border-bottom: 1px solid #b3b3b3; + } + + div.navbar > div.container > div.navbar-collapse > ul > li > a { + color:#333; + display:block; + padding:16px 16px; + text-decoration:none + } + + div.navbar > div.container > div.navbar-collapse > ul > li > a:focus{ + border-left:4px solid #0065bd; + box-shadow:0 4px #333; + outline:none; + padding-left:12px; + position:relative + } + + div.navbar > div.container > div.navbar-collapse > ul > li > a:hover{ + border-left:4px solid #0065bd; + padding-left:12px + } + + div.navbar > div.container > div.navbar-collapse > ul > li > a.sgt_current_page{ + background-color:#f8f8f8; + border-left:4px solid #0065bd; + padding-left:12px + } + /* End navbar content */ + + html.menu-is-open,html.menu-is-open body{ + overflow-y:hidden; + position:relative + } + +} diff --git a/inst/rmarkdown/templates/data/skeleton/template_libs/sg/css/navbar.css b/inst/rmarkdown/templates/data/skeleton/template_libs/sg/css/navbar.css new file mode 100644 index 0000000..bbf07f7 --- /dev/null +++ b/inst/rmarkdown/templates/data/skeleton/template_libs/sg/css/navbar.css @@ -0,0 +1,3 @@ +.navbar-brand { + display: none; +} diff --git a/inst/rmarkdown/templates/data/skeleton/template_libs/sg/css/print.css b/inst/rmarkdown/templates/data/skeleton/template_libs/sg/css/print.css new file mode 100644 index 0000000..5953b3c --- /dev/null +++ b/inst/rmarkdown/templates/data/skeleton/template_libs/sg/css/print.css @@ -0,0 +1,104 @@ +@media print { + + /* ------------------------------------------------------------------- */ + /* Page Layout */ + /* ------------------------------------------------------------------- */ + + @page { + margin-bottom: 1.27cm; + margin-left: 1.27cm; + margin-right: 1.27cm; + margin-top: 1.27cm; + } + + /* ------------------------------------------------------------------- */ + /* Common Elements */ + /* ------------------------------------------------------------------- */ + + body { + color: black !important; + font-size: 14px; + line-height: 1.5em; + margin-top: 0.5em; + margin-bottom: 0.5em; + padding: 0 !important; + } + + h1 { + font-size: 2em; + } + + h2 { + font-size: 1.4em; + } + + h3 { + font-size: 1.2em; + } + + h4, h5, h6 { + font-size: 1em; + text-decoration: underline; + } + + /* ------------------------------------------------------------------- */ + /* Hidden Elements */ + /* ------------------------------------------------------------------- */ + + /* Hide header, footer, navigation, and other elements */ + #TOC, .dataTables_length, .dataTables_paginate, .navbar, footer, header, nav { + display: none; + } + + /* ------------------------------------------------------------------- */ + /* Hyperlinks */ + /* ------------------------------------------------------------------- */ + + /* Print URLs after each hyperlink */ + p a[href^="http://"]:after, a[href^="https://"]:after { + content: " (" attr(href) ")"; + text-decoration: none; + } + + /* Do not print hyperlinks to anchors */ + p a[href^="#"]:after { + display: none; + } + + p a { + word-wrap: break-word; + } + + /* ------------------------------------------------------------------- */ + /* Tabs */ + /* ------------------------------------------------------------------- */ + + /* Display all tabbed content */ + .tab-content > .tab-pane { + display: block !important; + opacity: 1 !important; + visibility: visible !important; + } + + .tab-content { + border-style: none; + margin: 0; + padding: 0; + } + + /* Hide tab navigation */ + .nav-tabs { + display:none; + } + + /* ------------------------------------------------------------------- */ + /* Figures, Images, and Tables */ + /* ------------------------------------------------------------------- */ + + /* Limit the position and size of elements */ + figure, img, table { + max-width: 100%; + page-break-inside: avoid; + } + +} diff --git a/inst/rmarkdown/templates/data/skeleton/template_libs/sg/css/toc.css b/inst/rmarkdown/templates/data/skeleton/template_libs/sg/css/toc.css new file mode 100644 index 0000000..531e5f8 --- /dev/null +++ b/inst/rmarkdown/templates/data/skeleton/template_libs/sg/css/toc.css @@ -0,0 +1,40 @@ +/* --------------------------------------------------------------------- */ +/* Table of contents */ +/* --------------------------------------------------------------------- */ + +nav.ds_side-navigation ul { + list-style-type: none; + margin: 0; +} + +nav.ds_side-navigation ul > li { + margin-bottom: 0; +} + +/* Indent child links */ +nav.ds_side-navigation li > ul { + margin-left: 16px; +} + +nav.ds_side-navigation ul > li > a { + display: block; + margin-bottom: 2px; + outline: 0 !important; + padding-bottom: 10px; + padding-left: 16px; + padding-right: 40px; + padding-top: 12px; + text-decoration: none; + transition-property: background-color, outline-color; + transition-delay: 0s, 0s; + transition-duration: 0.2s, 0.2s; + transition-timing-function: ease, ease; +} + +nav.ds_side-navigation ul > li > a:hover { + box-shadow: -3px 0px 0px 0px #0065bd; +} + +nav.ds_side-navigation ul > li > a:focus { + box-shadow: -3px 0px 0px 0px #333333; +} diff --git a/inst/rmarkdown/templates/data/skeleton/template_libs/sg/css/tocify.css b/inst/rmarkdown/templates/data/skeleton/template_libs/sg/css/tocify.css new file mode 100644 index 0000000..b009850 --- /dev/null +++ b/inst/rmarkdown/templates/data/skeleton/template_libs/sg/css/tocify.css @@ -0,0 +1,34 @@ +/* --------------------------------------------------------------------- */ +/* Tocify (JavaScript floating table of contents) */ +/* --------------------------------------------------------------------- */ + +.tocify { + margin: 0; + max-width: 288px; + position: unset; + width: calc(0.25 * 100% - 32px); +} + +@media (max-width: 767px) { + .tocify { + display: none; + } +} + +@media (min-width: 768px) { + .tocify { + width: calc(0.33 * 768px - 32px); + } +} + +@media (min-width: 992px) { + .tocify { + width: calc(0.25 * 960px - 32px); + } +} + +@media (min-width: 1200px) { + .tocify { + width: calc(0.25 * 1152px - 32px); + } +} diff --git a/inst/rmarkdown/templates/data/skeleton/template_libs/sg/images/favicons/apple-touch-icon.png b/inst/rmarkdown/templates/data/skeleton/template_libs/sg/images/favicons/apple-touch-icon.png new file mode 100644 index 0000000000000000000000000000000000000000..c32d0756c1fa2d10cc05b5ed6ec21afc769a094b GIT binary patch literal 1918 zcmV-^2Z8vBP)N<$b0A;;mpw`LW@%H-tw9@QCjm`yUz5ryr>hk)IyW%5y#sFl!{{H{bs17^MD@c4tY-yC+t{Qdq{n$!wvzoN(IGla?lWxe0*_jj$_7jwh<{Qkh%?@g1@ z2x-6X_4}E^_m>w257!T zkI%Q%?D_ls>+|}Iy5SRW!f&YB+359Qpw>&@(|oYqd#~Msv)`=E>O+mrx6|zT z`~KMH^$BXfRhiS)=JeO+^~m1wnZf0j7?tDz00l}(L_t(|0qnpr0RR910WkWPb}F$2 z00000006FI4lWE3hGHlHKH5~}2MF%&?%jVeR;bFIrc(tNCgQMc$MvXGp6l2a;_(CJ zF_nfr75Ip)-Y}X%C6T7ls3QqW(_2g>;FhjgNUGiG3RA&Yx}7#s=$ZY2P@!bdH+x8@ zHXMza3d7^ku!i&|)0t2~WHy~36Z6G#B~$=eEf;fSWxd%lQ_h&Tn>8ZY?GeG@csdK^ zO3tU_0TJwXxLj|D;{JHPJj#vtdOq%m;jd%ZtjMDYt1Gv$I=g+D~`{k&fui2k&h zQ)44g5QS%rBDh`aZEYhaYTL2R+BSdf5+P1>UfbkqX1+NS_Vt^9i-BFpXO)4rkcaI+ z@a^l*9ni0Hio_BrA(EYyE2_#K84CGX86lEN#G+qsP5)|*QbmZ=8ZG0L7us5lnh>d! z|0*y2dm&x@eGu#ojb)4x*4O|-`+mLd-?|j%XH#k!eXiz?oT(T(j_#>mdF+wC5*Rv9?SwAiyL}R?sk<@i4?FI}+ zQ#E!2<`0%4i*}XegBg3#YLn5B_M()@yT3DoV1H%haEgJp^%V$h^Sexw49fU+Uu||m z^wi;W6&xeX<#aqHM0VRRXoH(R&vA=AUP9#aqmDi9wEaFp@qD9G)JL_5;_mX6h5G~Bh>+&Is057x*4lo5PU$a~``??|kN43j< zqa(<5zFNhmI_9{W`L?Mql5Z#{COV5I_##%^C2bL`jm z{?sfE+q;fA?Qq|20al0#o5SuCq9+Hx=v1?V8~b%G^^fX%@=^WPqtR z%%~n8U&IGRqmwU^I~kB1O^4gS6MhbEbTL%SJQ;7iG4qCRPl!Oj=>zCD1o{EhiJ+27 zOdTkwcokG}izyQZ)i$FGvbu`AZ0#y?yA)JpUHYCD-ALcXRFJ+^y`Go07GCT&z5d_M z9nb&(0ssiJgl!C94*Q4D7LM)j0g;fQo{Xg8oNfjc49<#aUo)ayCzz`y!{B~`9g5xi zTY>(-VeUVxj6KKGoRUQMFUiqPa%ohbM*#o;0002M1>7e9HqMlBssI2007*qoM6N<$ Ef>G4|EC2ui literal 0 HcmV?d00001 diff --git a/inst/rmarkdown/templates/data/skeleton/template_libs/sg/images/favicons/favicon-16x16.png b/inst/rmarkdown/templates/data/skeleton/template_libs/sg/images/favicons/favicon-16x16.png new file mode 100644 index 0000000000000000000000000000000000000000..52dbb012ecc9c1a9d114d98882d69f18c304be6c GIT binary patch literal 172 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`#hxyXAr-fhCD`B<6LV4l_Q_4}{R z>Kb&zS(?)wcElk^+3ElQ00DGTPE!Ct=GbNc004(cL_t(|+TGH{0fbNx1JKDX!Cm@q z6}O;g-tp_0eFK2s-{A@8kB*_|dZhAP^vn;?3nT7CA$oytj1%FfzAK` literal 0 HcmV?d00001 diff --git a/inst/rmarkdown/templates/data/skeleton/template_libs/sg/images/favicons/favicon.ico b/inst/rmarkdown/templates/data/skeleton/template_libs/sg/images/favicons/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..84871bac55a74ac6312955383c6934aafda41928 GIT binary patch literal 9662 zcmeHNJxc>I7>+o zXrX8Yp#{MYlwyk?RNH&ad-h80(d2^nRY}TSddc<4^X8r;&)t=f2Kw>&2;F;tI*sR5}0sR5}0+ciMDT%YbwLvS?R2Kyt#(d}r; z1IPswMNg7b^7Z}#$&CpJk2cyK1GbqA`2jgFlYzK$>2rt%dTom#8t8#+>WoQSt)$#9 zmiplJ?vi`1q7>mavI>Wjt(L`s*td}&l}eGz2RS2m)OUES32wG#p^$&${w|+;gv9!g z=`keM1|gq);I@w(kt=ep9-GHA?eG-a=3?Lpnd?J1neWzNRAcgv5hIg~7-|!_Ax9o& zY`Gskp3_`RrSJ*qy+w%lTez6jZ61s_Luz*c5QCSH3v#N)U>%F%$5#dn4 zTv>HO*EhaHudlaeTSEGznleM5T5MwDYwp+h5}F_A7{<1=cFoL%=C}JRb$%0@pM#dp z&stv?USD_vvs9036=G`mcI1ZFcSa1VKcODM34fyXQQ2QHcdiD9r*ibD zsz20`WEVK?Z&m$JZ_4$Dj4+(?x9CODlNw4c^0(H{pVs-?dR@Qj)j!m;e-rVCZt~AU z{?JADFGBv%W%rL_{?NMl4gG`A{9L+!H}YJ_&CgF*Yp7G}J6?;w`dg>{mF7pw{ + + + + + + + + + \ No newline at end of file diff --git a/inst/rmarkdown/templates/data/skeleton/template_libs/sg/images/icons/icons.stack.svg b/inst/rmarkdown/templates/data/skeleton/template_libs/sg/images/icons/icons.stack.svg new file mode 100644 index 0000000..6200ee7 --- /dev/null +++ b/inst/rmarkdown/templates/data/skeleton/template_libs/sg/images/icons/icons.stack.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/inst/rmarkdown/templates/data/skeleton/template_libs/sg/images/logos/ogl.svg b/inst/rmarkdown/templates/data/skeleton/template_libs/sg/images/logos/ogl.svg new file mode 100644 index 0000000..0d30da5 --- /dev/null +++ b/inst/rmarkdown/templates/data/skeleton/template_libs/sg/images/logos/ogl.svg @@ -0,0 +1,10 @@ + + diff --git a/inst/rmarkdown/templates/data/skeleton/template_libs/sg/images/logos/scottish-government.svg b/inst/rmarkdown/templates/data/skeleton/template_libs/sg/images/logos/scottish-government.svg new file mode 100644 index 0000000..bbf684e --- /dev/null +++ b/inst/rmarkdown/templates/data/skeleton/template_libs/sg/images/logos/scottish-government.svg @@ -0,0 +1,104 @@ + + + +Scottish Government logo + + + + + + + + + + + diff --git a/inst/rmarkdown/templates/data/template.yaml b/inst/rmarkdown/templates/data/template.yaml new file mode 100644 index 0000000..fbaa62b --- /dev/null +++ b/inst/rmarkdown/templates/data/template.yaml @@ -0,0 +1,3 @@ +name: "Scottish Government Template" +description: "An R markdown template with the Scottish Government's Design System styles." +create_dir: true diff --git a/inst/rstudio/templates/project/resources/_site.yml b/inst/rstudio/templates/project/resources/_site.yml new file mode 100644 index 0000000..0fc0719 --- /dev/null +++ b/inst/rstudio/templates/project/resources/_site.yml @@ -0,0 +1,19 @@ +name: "Example Scottish Government Website" +title-prefix: "data.gov.scot" +navbar: + left: + - text: "Home" + href: "index.html" + - text: "Example" + href: "example.html" +output: + html_document: + code_download: false + df_print: paged + fig_caption: true + number_sections: true + self_contained: false + template: "_template.html" + toc: true + toc_depth: 2 + toc_float: false diff --git a/inst/rstudio/templates/project/resources/accessibility.Rmd b/inst/rstudio/templates/project/resources/accessibility.Rmd new file mode 100644 index 0000000..ff3de12 --- /dev/null +++ b/inst/rstudio/templates/project/resources/accessibility.Rmd @@ -0,0 +1,32 @@ +--- +title: "Accessibility Statement" +author: "`r as.character(Sys.info()[7])`" +date: "`r Sys.Date()`" +sgtemplates: + footer: + link: + - href: "privacy.html" + text: "Privacy" + - href: "cookies.html" + text: "Cookies" + - href: "accessibility.html" + text: "Accessibility" + - href: "contact.html" + text: "Contact" + header: + phase_banner: + tag: "WIP" + text: "This is a work in progress." + site_branding: "Scottish Government" + navigation: + breadcrumb_trail: + - href: "index.html" + text: "Index" + - text: "Accessibility Statement" + toc: + sticky: false +--- + +```{r setup, include = FALSE} +knitr::opts_chunk$set(echo = TRUE) +``` diff --git a/inst/rstudio/templates/project/resources/contact.Rmd b/inst/rstudio/templates/project/resources/contact.Rmd new file mode 100644 index 0000000..7ad28b6 --- /dev/null +++ b/inst/rstudio/templates/project/resources/contact.Rmd @@ -0,0 +1,32 @@ +--- +title: "Contact Information" +author: "`r as.character(Sys.info()[7])`" +date: "`r Sys.Date()`" +sgtemplates: + footer: + link: + - href: "privacy.html" + text: "Privacy" + - href: "cookies.html" + text: "Cookies" + - href: "accessibility.html" + text: "Accessibility" + - href: "contact.html" + text: "Contact" + header: + phase_banner: + tag: "WIP" + text: "This is a work in progress." + site_branding: "Scottish Government" + navigation: + breadcrumb_trail: + - href: "index.html" + text: "Home" + - text: "Contact Information" + toc: + sticky: false +--- + +```{r setup, include = FALSE} +knitr::opts_chunk$set(echo = TRUE) +``` diff --git a/inst/rstudio/templates/project/resources/cookies.Rmd b/inst/rstudio/templates/project/resources/cookies.Rmd new file mode 100644 index 0000000..5629776 --- /dev/null +++ b/inst/rstudio/templates/project/resources/cookies.Rmd @@ -0,0 +1,32 @@ +--- +title: "Cookies" +author: "`r as.character(Sys.info()[7])`" +date: "`r Sys.Date()`" +sgtemplates: + footer: + link: + - href: "privacy.html" + text: "Privacy" + - href: "cookies.html" + text: "Cookies" + - href: "accessibility.html" + text: "Accessibility" + - href: "contact.html" + text: "Contact" + header: + phase_banner: + tag: "WIP" + text: "This is a work in progress." + site_branding: "Scottish Government" + navigation: + breadcrumb_trail: + - href: "index.html" + text: "Home" + - text: "Cookies" + toc: + sticky: false +--- + +```{r setup, include = FALSE} +knitr::opts_chunk$set(echo = TRUE) +``` diff --git a/inst/rstudio/templates/project/resources/example.Rmd b/inst/rstudio/templates/project/resources/example.Rmd new file mode 100644 index 0000000..4427ea4 --- /dev/null +++ b/inst/rstudio/templates/project/resources/example.Rmd @@ -0,0 +1,93 @@ +--- +title: "Example Page" +author: "`r as.character(Sys.info()[7])`" +date: "`r Sys.Date()`" +sgtemplates: + datatables: + features: + info: true + ordering: true + paging: true + searching: false + footer: + link: + - href: "privacy.html" + text: "Privacy" + - href: "cookies.html" + text: "Cookies" + - href: "accessibility.html" + text: "Accessibility" + - href: "contact.html" + text: "Contact" + header: + phase_banner: + tag: "WIP" + text: "This is a work in progress." + site_branding: "Scottish Government" + metadata: + label: "Report" + navigation: + breadcrumb_trail: + - href: "index.html" + text: "Home" + - text: "Example Page" + toc: + sticky: false +--- + +```{r setup, include = FALSE} +knitr::opts_chunk$set(echo = TRUE) +``` + +# R Markdown + +## About R Markdown + +This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see . + +When you click the **Knit** button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this: + +```{r cars} +summary(cars) +``` + +# Features + +## Plots + +You can embed plots, for example: + +```{r pressure, echo = FALSE} +plot(pressure) +``` + +Note that the `echo = FALSE` parameter was added to the code chunk to prevent printing of the R code that generated the plot. + +## Mathematics (MathJax) + +This template uses MathJax to render mathematical notation in-browser. + +Use dollar signs as your delimiter for maths. A single dollar sign renders your maths inline. + +$c^2 = a^2 + b^2$ + +Two dollar signs center-aligns your maths. + +$$ax^2 + bx + c = 0$$ + +Complex mathematics is supported, too. + +$$\mathbf{P}((X,Y) \in B) = \iint\limits_{(x,y) \in B} f_{X,Y}(x,y) \,dx \,dy$$ + +## DataTables + +Support for [DataTables](https://www.datatables.net/) is included. DataTables allows for the creation of advanced tables with greater user interaction. + +```{r kable, echo = FALSE} +knitr::kable( + x = iris, + format = "html", + caption = "An example table, generated using the Kable library.", + caption.short = "A short caption." +) +``` diff --git a/inst/rstudio/templates/project/resources/index.Rmd b/inst/rstudio/templates/project/resources/index.Rmd new file mode 100644 index 0000000..7d6abc2 --- /dev/null +++ b/inst/rstudio/templates/project/resources/index.Rmd @@ -0,0 +1,35 @@ +--- +title: "Home" +author: "`r as.character(Sys.info()[7])`" +date: "`r Sys.Date()`" +sgtemplates: + footer: + link: + - href: "privacy.html" + text: "Privacy" + - href: "cookies.html" + text: "Cookies" + - href: "accessibility.html" + text: "Accessibility" + - href: "contact.html" + text: "Contact" + header: + phase_banner: + tag: "WIP" + text: "This is a work in progress." + site_branding: "Scottish Government" + metadata: + label: "Report" + navigation: + breadcrumb_trail: + - text: "Home" + toc: + sticky: false + seo: + description: "SEO (search engine optimisation) description" + keywords: "SEO, keywords, comma, separated" +--- + +```{r setup, include = FALSE} +knitr::opts_chunk$set(echo = TRUE) +``` diff --git a/inst/rstudio/templates/project/resources/privacy.Rmd b/inst/rstudio/templates/project/resources/privacy.Rmd new file mode 100644 index 0000000..17b5af5 --- /dev/null +++ b/inst/rstudio/templates/project/resources/privacy.Rmd @@ -0,0 +1,32 @@ +--- +title: "Privacy Statement" +author: "`r as.character(Sys.info()[7])`" +date: "`r Sys.Date()`" +sgtemplates: + footer: + link: + - href: "privacy.html" + text: "Privacy" + - href: "cookies.html" + text: "Cookies" + - href: "accessibility.html" + text: "Accessibility" + - href: "contact.html" + text: "Contact" + header: + phase_banner: + tag: "WIP" + text: "This is a work in progress." + site_branding: "Scottish Government" + navigation: + breadcrumb_trail: + - href: "index.html" + text: "Home" + - text: "Privacy Statement" + toc: + sticky: false +--- + +```{r setup, include = FALSE} +knitr::opts_chunk$set(echo = TRUE) +``` diff --git a/inst/rstudio/templates/project/scottish-flag.png b/inst/rstudio/templates/project/scottish-flag.png new file mode 100644 index 0000000000000000000000000000000000000000..c085b85933f35f606594cef67fc0827dfd37978b GIT binary patch literal 451 zcmV;!0X+VRP)s6{{EJ~ z;}CAZmA~T!XT5o@-1YhV>GJtqozz^M)adc~A9uvE(Cfh2?kRo8zu4|hlhEMo_xk+) zh_~PhYQG6-zK6EoPn6NK(d!_0#CopW*XQ(W>r7?<0004WQchCua89iL6=3RO&E^GEGAPVn9W&?M?(;R#gbjCH6qpLH*WGwMO6AC-SU;t8OX9@F_;8*|v literal 0 HcmV?d00001 diff --git a/inst/rstudio/templates/project/skeleton.dcf b/inst/rstudio/templates/project/skeleton.dcf new file mode 100644 index 0000000..209c413 --- /dev/null +++ b/inst/rstudio/templates/project/skeleton.dcf @@ -0,0 +1,6 @@ +Title: Scottish Government Website +Binding: site_skeleton +Subtitle: Create a simple R Markdown website with the Scottish Government's Design System styles. Includes SG branding, additional metadata and style options, and accessibility features. +Caption: Create an R Markdown website with Scottish Government styles +OpenFiles: _site.yml, *.Rmd +Icon: scottish-flag.png diff --git a/man/images/download-from-github.png b/man/images/download-from-github.png new file mode 100644 index 0000000000000000000000000000000000000000..c2b3fdff06d467e2ce9ceaffbe4580477b32a31a GIT binary patch literal 6695 zcma)g2UHVXyY(Onij-HXR22cK(uB~9^hgs3AiZelK_E1#7DR-|3rG!BYUo82LX%!h z=v_h)gaib|0Mc`V_ulV*-~WIAUH_~#=bUF|)|@qG_OqY8PmHml4jl~#4FCXidb*k> z06_7CeBQcvj(kOM^x77=qk@|lnv#3+0V|?T008zmJxz79pxN(fQ3;)De|@re;kzebIcAlm@!vtF;Ow4Ee(CPaEVYI(N@gK6$aOMjDo z0Ct8#=Na(+N9Oj#(iBj!!3`@eWd-@F%}gRH{Pp1Lq!*)zQG?52=4{a95E=T45BJmb zJueSMlM;^Zng=g++;}TGZxZg*-0v^_a4paGM@n1-yvEv!= z+MBgd@ne2GU+Pr5D7umP6o+uU9bEQm`j*0Ro-tl$kV_0jzhCBWG=vF`Z4^=?XfLoP z_VLQ2@ps>{j6danD1KKnOoNCI%CWQ*c^ATWr%SN`V3@kJZjItPh1 zhHs`_L+i(~&K7Foo@uhU#Vj)_i#z4!oSo?N!5tgG@+XAzIaKStU zApWAwb2b$}SnH#k4^H=1L!0FoSLjtm1snqFmq&_wxtMzdxi903Osj5Gd&@K0h$yro8RO5LEwaUei&m!QDCmJ4yj6gZ!soMCEbuoyz zOTt>bWnBwwV#zpWUs?^q`CzGaiQq|-b9!IhWp+ki-QMEa9{IhP`z&&8;5q1C?Uem5 zvn%7drZlK~;Zg1p#NU}S9hI0&5cU+OyZR_BA}KkBt8<#=op}9`77@uww6wn1|81#P zhXX!9H|(70nEDpR*YxTOXHeJ11YOb9F}ef#G~yWugn$rbDLab2_-s#ow_pNst!T>96YkO#$iZJ8||M|Z2`I-hE`9O{gUANF^0;; z+6VTY9y)=Tlap+qVtmRLgu7^myS`Tb;^l1zu5&RL%QlK2$Vy4+prfawMW5ej-S3~- zY$3fTuTyO0eA%xD$lh?;##W)X*DPgj&)L04?W7^R@6^l(CEx`r8EfjVG++$^%2|I8 zf^T6=t*MvmIiC1vvRN=Z-%*wjR9(DLa^=h1=b5VK?TbWZ-O}S$VRy{uju*KyX@OF3li-z~DoWFD(2Km02|GxMBA&9Xlfvga|`jbJzoWVcPW(b(xQ zCiKwYrw|m9npzm4hc6W+pTbK&`LXMQyPQwO@; zqM7Ez{)NcH9GqN;C0%1&!KjbbBG&8(b`nwN%-TcOWz5{1fx*B&s`;>jsqSToifiCi!~8hycF}F z&y*Sjc4TEM>DK+;^44$=2nPaIX)fo7bY;ZWvg`M&$d z1suDTc7mYnfEdJ&O54CNrL(P*v9i?ED`s%fRY`8#cVtWvjr+OvrYg|ar8r@hXIy}L z@jsy09HilKkdn%w(d`R@RgZUy^}MmK9F_RhwlMLcC;lF zx+)|6yr^s@CA~n(LsX`p7F)5DfK=Zb{ks`cPCXMGqbz69T5+6=rqQXFs?*FF3Jk4% z2h*O58`u}-<%3WF%zZNQ%Uym3LUpmw?nCajHmA-XC;bYFOh7KL0F&wKnC`-xQ`6Uq zWkz^_NPflI(RBcEag^>UihU^l^hRF$zGG z3I_ma3P246M8W`o9OQDI1puB37^XW50667YaCVFQ9687xl8-p-n=wtTq?^Ag`TY}* z)shl^)tJQA(?i-tlH?M)J4A!7>`DPjVLNfwtHXr6UWQDm@1O4JE8r%v)B9~L!N2DZ z*1VxL64HiZw$)+#?eGMgyj#=})s|5x@wDuV$ND1xA0n48*^SvppAT`3QW+zZ!aUz2 z!3r_&B`#OaU7!pUU?GNk-}n6$2B#bzZicQgQJYfiy}e*Loj76eBXuQ%5l@vndBTx1 zg{dBj`dpWmM&yVA4mtGXA26x7q8%)1o%t;xd~D#TNXn|1Ele$HOUb9s#3kd4h$YVhS|JT?cW zgvn%F(;R*M0~BH@Zzl+UFz zxT>%nv5*1DU9%~~T*8rh&|K5@{tK9y3S_CwgaNSb9^)$T%BY4kGe`W;_RBnHs(pCN z)YlXYs%Konzc9a}L*v48Vr>%I=HxvS9w zwcjL7;)1@y15wX}(-;9D;$86m&fh{k)s*5R%|*A#5IT~BvgQ!31~@P@{ib04ZSy@AcW+p!{EDQNSU7>oU_GRkb$5zS}?Wm4+udGne^E_|+ zS5c=kgu^$&Bv*KM?5C90Q{K+J)(N|JW_2fj|M++(#9E`Uh^e9^7Dy?EDbNmYyK{m# zhE!e%#9LRydA$BH@ts>XtgC|tEtKAU-u*%MWt1&wbWXh~U{}KcO`!%-fYG4?6^=L- zeuogF+;9&C*f@T^yMbFlRz3g$_#Ot&ta{Mc`&J{c@1-af_;OPD3jdEOsp=Nel~mMo z%jsXq8TOt4a}Y_ztn-Npdq8%>H--7@NKjMI@NB?$pg zP@(PgoKcYg*A)2OV;Fj*IA$Ih%o_mufV5FuwoGO(v^se){=pyQAA9|bSCIC$+tWr>3VWSpw@*K?uJ zRQ^n<_g6C(2#vK$c4h$lrnxscPu*-ldwwNObdQJ`-*(XFaycFSxGG9HMiC^;mtxru zFRh^BVgP#Nj09f7O>NRP>FVq$tB>I~R}icIL}goPKy#Sx3>_z_l}4obsn+%l^4G7A zW3!9nx#XqUp|9nAmVPBge|gD0ts(NhSkxhA9oku6MOyCK4a;jzS9p4=31X{iHplm9 zE=L6z<5xSrO{K)c4DCq0Bj&F>TU2%*`B&wX+ZBU-1%2(NL8aaVQw|mr2pa@HL}O-% zB6=)Lobru$PY4H^+a3;1iEozLKz{q*{5;)GyOLE{j6B}BF@|ig$wE9zJ8%Fd4ZPDk!j<>}ewIYXy8~I65IW`{F&8Z@mlvSad0sgEg zb2FD;QqBb#eYdV1nP!=mO7EG}8Zu=2fq62U_EvtHKUN8rDd2f!%Bdw_Xc3Gt)hqh( z_bQy}0S9?{3wZR_%bgR)s&-*iyT56kq4@UH7w^ku5*3_UrT4G6IHEkJa%*2y_=c=6 z*_MQWDv)w@rlFWd&A7~U{ib#OUo}>N#;%fkE+x`FPi_~6MhyA{GVRl8@8i#=#khZ(9>(yYW_IQx`&r#+WPE^jA16lY^*Z(K)m_L>f)pZj9Gzp zP)|XrY-^HYxcPUqvCH9(K6vI7vmr2c0x0A$<4uugCCI6& zieK}ABh#Oqd-Dci1OZ6_mYFlvyx)V=z0S=}x#MXE%6JZ+&moLS3r(Pq(>H=~D_c+T z1LMk7rBd7`>L9#;PxLpPS8!(;C1%o;s?Ui+1al`VS7%^67)gR@;Q{G^OdLi$Yq=4XoOtYszLc8pVUdmc z9G6gPD#V`@f5N^-LU~o0Wo`dijPd%lqv=z8o~rBoaKUB z30_Pj+Ky-AkYnTgE3?evq2-epn8{)4covPdYK#H}N6~gjYcMXeA?N_5QS8#4U2Ctn z>RklnX1AqF<)y))!M(?J6kRy818HWAbUHo9lI5hAU5M{;Xa!yRDg~rW|PI()qE5PcV z^ki^kIR(#0VT~8uFLWh#S8%F<$R+5eimmE&#*=t4?0ol!4=gGLEfFaL);ZbJ5s$rj zTj$IV@-Bp&8^9)Q`z1q!zB?TCJj|x4o;-p-k?psPvD$X=zf|Mbq4n)6Q?RfGKPz}O zms2rKnd$RPEu9Iat2wAby)mB)YDCZ;YHNR^)cok=!(<)d10zEVE{}75XZ?A&gG}E` zyNF;x;ZKI_X6I)3AbPbd6Re88Jzm4=3Mxs(D~}{mjO+%O`K7J5ngZ*gF+91Bxao$` zps^5#U~@)UDbu?no19;rt+(?U9e%-)&-ZKSuBzU*zFKOJSf6|B=944?(Q8efmRHbv z_%*qhmy&fg{1SiG5bQ9T=b+X~e?&~i$P2(RYk;=Ehl&*oSYd{J(^6so-Xo+tubo$S zG|y^a8#eUPn-cKQq=f;brR;z z8LFFDV}N)G9_WXFzRZS$`!u&WmE@RH!vP4KNmj=8yw#5vE&5pWGNCZ!eX~cI!Q|Cz zvor?x^zWMt2-7pz>drkgxP>C`JdM6b^TOZ6Kb%NM7_G4f7CGzLfwtFx#PCMpmW}ap z@^3$eW+k4NjiJE7#r1}@8P95@L9YMp7K-B-fqxa?|BEsbRsBDu`yB(@I`mq?_(*xw- z>s`g7jUFCWqX#kUE^iLVmA}R<7FA#)h|}*SJA%rCP0j{y(*mKbHguRBTCcyr_iBSP zAB$EM)nOKbC?wkr#KdJX5a`{_W3B4jX)5ic!2(Mi8($r&Tr5ujh9b$O6gGZd=Jv& zP5;gk1OFDE_^fo|`p}M158-~kf-S|mHUTQkesA%BJ=M4pyt|h8;vzc1XC>n`TK=H5 z;QF1b$A-Jksap3do9vSXEn{nk-%-12x@GQ5^obTJRH-IbHkU~JJ!0@KA`#J(9j}a{ zO#Q4TgrQG7$uEAZucG%Vmy_M4bFbHIv;lS}da7is#5|5Zkr-N~Zq+F5$snek(T5i> zZCk%Y<)c_2QYFz8b28QlgZ|JHF;n(=$=koq_|83<{GPw?0$L}rD7j4L+-McaD-Up8 zH7*9$OaTL(_g&gmu5Sz@&X@MV@B#rA;gZRCz2sgpZpMhT-UYDsS-|a ztKRi!O;Q2eR7H6t=``Xl`;(`>A)pyP3S2?sNnzl^QEc0;vtq-q0SgaZ!;kp_M8}R_ zt<+s0qs=&Y0VSQPGQVO0busnB^>~Ae1OdpwP5)&p(Nd1T+nh)%i6a!dG zkV<)@8RVAUIdqI-*PaVal+&4qb$lL7{ruCrr)*bnW|_0o)?=IEt;LNwpJqPH{O078=$JdPPJ3(LMsJM&LV>XOdf?mz_r9Cnhyr-N`vlk@2UMq(+JZ7T z8m@=V^%O>5*nirDdQ}s2ttI^3q*PS)xJ|juws=Fc8NU5?z3(>))z8Esg7*CRGzLq3 zJitsMWQAKil~aO7nV85^!e?6MStv|l+N_4 z`d`r|)j?IIlsG<-RH@8&tIaSdrr;NuWv{4%nsVeE+Vn#S17&ogMP^@%bdA(PKedIN zM)|~t26P3wAJ2g6I4=iu2c65&11Wrb4FiS|O+9b86)P=3qc4W&JNCfSH+Zi3w>7YB zA&wGDZ{i9>EUE(>n;Ylm5#1$Z<4Lv=Qn6t7QLHM>RP-=I{7S~pSTUcHHUFeao2ZZ4 z^I4K(+kM2+>bFLFQ^&v16pP+Pu-4sxaRe!Meb+nGiDH+J1~}H*ued_!*@M}DT3tLV zYa(Btaq|_GRH2kh0X8yX|Fqrn?-2OMuKf?BvEC=`rK__5AknYC4&5zMZadQPKzdLC zpZMy0)|hhYB19&CxWb-M0{UM1QfFq%OW>AVM76IUQx64TmOR)$oeBOyU6p#E& + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/man/images/mockup.png b/man/images/mockup.png new file mode 100644 index 0000000000000000000000000000000000000000..b4152c99af29939f21cf346da5fd93c33b025496 GIT binary patch literal 31818 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�|;_<#iyGMO8eJV);6H&aJTC-#w?pnuUT64`b8 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 X;^s)|FInUn;V6nPRb)$~jp6?Xg||~B literal 0 HcmV?d00001 diff --git a/man/images/new-document.png b/man/images/new-document.png new file mode 100644 index 0000000000000000000000000000000000000000..18fdbdb899d6b9102360e9de61a777904f07d870 GIT binary patch literal 15509 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 literal 0 HcmV?d00001 diff --git a/man/images/new-website.png b/man/images/new-website.png new file mode 100644 index 0000000000000000000000000000000000000000..2fe71ca5ede0d7d89b7f31084be807769637a46a GIT binary patch literal 19107 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 X%dm_u^9lAxgaB0~O~rC~tFZqAo|QP{ literal 0 HcmV?d00001 diff --git a/sgtemplates.Rproj b/sgtemplates.Rproj new file mode 100644 index 0000000..b629fb0 --- /dev/null +++ b/sgtemplates.Rproj @@ -0,0 +1,21 @@ +Version: 1.0 + +RestoreWorkspace: No +SaveWorkspace: No +AlwaysSaveHistory: Default + +EnableCodeIndexing: Yes +UseSpacesForTab: Yes +NumSpacesForTab: 2 +Encoding: UTF-8 + +RnwWeave: Sweave +LaTeX: pdfLaTeX + +AutoAppendNewline: Yes +LineEndingConversion: Posix + +BuildType: Package +PackageUseDevtools: Yes +PackageInstallArgs: --no-multiarch --with-keep.source +PackageRoxygenize: rd,collate,namespace