style.scss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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.5.3
  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. * Extends
  27. */
  28. @import "sass/base/extends";
  29. /**
  30. * Base
  31. * - Reset the browser
  32. */
  33. @import "sass/base/imports";
  34. /**
  35. * Layout
  36. * - Structral and responsive styles
  37. */
  38. @import "sass/layout/imports";
  39. /**
  40. * Elements
  41. * - Styles for basic HTML elemants
  42. */
  43. @import "sass/elements/imports";
  44. /**
  45. * Blocks
  46. * - These styles replace key Gutenberg Block styles for fonts, colors, and
  47. * spacing with CSS-variables overrides
  48. * - In the future the Block styles may get compiled to individual .css
  49. * files and conditionally loaded
  50. */
  51. @import "sass/blocks/imports";
  52. /**
  53. * Components
  54. * - Similar to Blocks but exist outside of the "current" editor context
  55. */
  56. @import "sass/components/imports";
  57. /**
  58. * Site Pages
  59. * - Page specific styles
  60. */
  61. @import "sass/pages/imports";
  62. /**
  63. * Responsive Logic
  64. * - Loading this last to respect cascaing rules
  65. */
  66. @import "sass/abstracts/responsive-logic";
  67. /**
  68. * Vendors
  69. * - Styles for 3rd party plugins and WP extensions
  70. */
  71. @import "sass/vendors/imports";
  72. /**
  73. * Full Site Editing
  74. * - Full Site Editing overrides
  75. */
  76. @import "sass/full-site-editing/imports";