Copybara bot | be50d49 | 2023-11-30 00:16:42 +0100 | [diff] [blame^] | 1 | @charset "UTF-8"; |
| 2 | |
| 3 | /** |
| 4 | * Element Queries are a new way of writing CSS styles so the rules apply to individual elements |
| 5 | * on the page, instead of to the whole page as one document like in regular CSS Media Queries. |
| 6 | * This SASS file includes the eq.js, https://github.com/Snugug/eq.js, prolyfill which is an easy to use |
| 7 | * drop-in solution to JavaScript powered element queries. It works well with SASS, |
| 8 | * and element queries work without requireing a server to run. |
| 9 | * |
| 10 | * Feel fre to write your own element query stylesheet using one of the other libraries, e.g: |
| 11 | * [EQCSS] - (https://github.com/eqcss/eqcss) |
| 12 | * [CSS Element Queries] - (https://github.com/marcj/css-element-queries) |
| 13 | * [BoomQueries] - (https://github.com/BoomTownROI/boomqueries) |
| 14 | */ |
| 15 | |
| 16 | // eq.js mixins |
| 17 | @import '~eq.js/sass/eq'; |
| 18 | |
| 19 | // Configuration and helpers |
| 20 | @import 'variables'; |
| 21 | @import 'mixins'; |
| 22 | @import 'functions'; |
| 23 | |
| 24 | // Components |
| 25 | @import 'aria-expanded-toggle/aria-expanded-toggle'; |
| 26 | @import 'sticky-header/sticky-header'; |
| 27 | @import 'dialog/dialog'; |
| 28 | @import 'grid/grid-eqjs'; |
| 29 | @import 'lightboard/lightboard'; |
| 30 | @import 'lightboard/lightboard-eqjs'; |
| 31 | @import 'lightbox/lightbox'; |
| 32 | @import 'carousel/carousel'; |
| 33 | @import 'selectfield/selectfield'; |
| 34 | @import 'menu-button/menu-button'; |
| 35 | @import 'bordered-fields/bordered-fields'; |
| 36 | @import 'collapsible/collapsible'; |
| 37 | @import 'accordion/accordion'; |
| 38 | @import 'color-themes/light-color-theme'; |
| 39 | @import 'color-themes/dark-color-theme'; |