style.scss 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /*
  2. Theme Name: Varia
  3. Theme URI: https://wordpress.com/theme/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.6.31
  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, wpcom-fse, jetpack-global-styles
  13. AMP: true
  14. This theme, like WordPress, is licensed under the GPL.
  15. Use it to make something cool, have fun, and share what you've learned with others.
  16. Varia is based on Underscores https://underscores.me/, (C) 2012-2018 Automattic, Inc.
  17. Underscores is distributed under the terms of the GNU GPL v2 or later.
  18. Normalizing styles have been helped along thanks to the fine work of
  19. Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
  20. */
  21. /**
  22. * Abstracts
  23. * - Mixins, variables and functions
  24. */
  25. @import "sass/abstracts/imports";
  26. /**
  27. * Base
  28. * - Reset the browser
  29. */
  30. @import "sass/base/imports";
  31. /**
  32. * Layout
  33. * - Structral and responsive styles
  34. */
  35. @import "sass/layout/imports";
  36. /**
  37. * Elements
  38. * - Styles for basic HTML elemants
  39. */
  40. @import "sass/elements/imports";
  41. /**
  42. * Blocks
  43. * - These styles replace key Gutenberg Block styles for fonts, colors, and
  44. * spacing with CSS-variables overrides
  45. * - In the future the Block styles may get compiled to individual .css
  46. * files and conditionally loaded
  47. */
  48. @import "sass/blocks/imports";
  49. /**
  50. * Components
  51. * - Similar to Blocks but exist outside of the "current" editor context
  52. */
  53. @import "sass/components/imports";
  54. /**
  55. * Site Pages
  56. * - Page specific styles
  57. */
  58. @import "sass/pages/imports";
  59. /**
  60. * Responsive Logic
  61. * - Loading this last to respect cascaing rules
  62. */
  63. @import "sass/abstracts/responsive-logic";
  64. /**
  65. * Vendors
  66. * - Styles for 3rd party plugins and WP extensions
  67. */
  68. @import "sass/vendors/imports";
  69. /**
  70. * Full Site Editing
  71. * - Full Site Editing overrides
  72. */
  73. @import "sass/full-site-editing/imports";