style.scss 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /*
  2. Theme Name: Varia
  3. Theme URI: https://github.com/Automattic/themes/tree/master/varia
  4. Author: Automattic
  5. Author URI: https://automattic.com/
  6. Description: A variable-based design system for WordPress sites built with Gutenberg.
  7. Requires at least: WordPress 4.9.6
  8. Version: 1.3.1
  9. License: GNU General Public License v2 or later
  10. License URI: LICENSE
  11. Text Domain: varia
  12. Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, full-site-editing, jetpack-global-styles
  13. This theme, like WordPress, is licensed under the GPL.
  14. Use it to make something cool, have fun, and share what you've learned with others.
  15. Varia is based on Underscores https://underscores.me/, (C) 2012-2018 Automattic, Inc.
  16. Underscores is distributed under the terms of the GNU GPL v2 or later.
  17. Normalizing styles have been helped along thanks to the fine work of
  18. Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
  19. */
  20. /**
  21. * Abstracts
  22. * - Mixins, variables and functions
  23. */
  24. @import "sass/abstracts/imports";
  25. /**
  26. * Base
  27. * - Reset the browser
  28. */
  29. @import "sass/base/imports";
  30. /**
  31. * Layout
  32. * - Structral and responsive styles
  33. */
  34. @import "sass/layout/imports";
  35. /**
  36. * Elements
  37. * - Styles for basic HTML elemants
  38. */
  39. @import "sass/elements/imports";
  40. /**
  41. * Blocks
  42. * - These styles replace key Gutenberg Block styles for fonts, colors, and
  43. * spacing with CSS-variables overrides
  44. * - In the future the Block styles may get compiled to individual .css
  45. * files and conditionally loaded
  46. */
  47. @import "sass/blocks/imports";
  48. /**
  49. * Components
  50. * - Similar to Blocks but exist outside of the "current" editor context
  51. */
  52. @import "sass/components/imports";
  53. /**
  54. * Site Pages
  55. * - Page specific styles
  56. */
  57. @import "sass/pages/imports";
  58. /**
  59. * Responsive Logic
  60. * - Loading this last to respect cascaing rules
  61. */
  62. @import "sass/abstracts/responsive-logic";
  63. /**
  64. * Vendors
  65. * - Styles for 3rd party plugins and WP extensions
  66. */
  67. @import "sass/vendors/imports";
  68. /**
  69. * Full Site Editing
  70. * - Full Site Editing overrides
  71. */
  72. @import "sass/full-site-editing/imports";