Keine Beschreibung

style.scss 5.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. @import "01-settings/file-header";
  2. /**
  3. * SETTINGS
  4. * File-header..........The file header for the themes style.css file.
  5. * Fonts................Any font files, if the project needs specific fonts.
  6. * Global...............Project-specific, globally available variables.
  7. *
  8. * TOOLS
  9. * Functions............Global functions.
  10. * Mixins...............Global mixins.
  11. *
  12. * GENERIC
  13. * Normalize.css........Normalise browser defaults.
  14. * Breakpoints..........Mixins and variables for responsive styles
  15. * Vertical-margins.....Vertical spacing for the main components.
  16. * Reset................Reset specific elements to make them easier to style in other contexts.
  17. * Clearings............Clearings for the main components.
  18. *
  19. * ELEMENTS
  20. * Blockquote...........Default blockquote.
  21. * Forms................Element-level form styling.
  22. * Headings.............H1–H6
  23. * Links................Default links.
  24. * Lists................Default lists.
  25. * Media................Images, Figure, Figcaption, Embed, iFrame, Objects, Video.
  26. *
  27. * BLOCKS
  28. * Audio................Specific styles for the audio block.
  29. * Button...............Specific styles for the button block.
  30. * Code.................Specific styles for the code block.
  31. * Columns..............Specific styles for the columns block.
  32. * Cover................Specific styles for the cover block.
  33. * File.................Specific styles for the file block.
  34. * Gallery..............Specific styles for the gallery block.
  35. * Group................Specific styles for the group block.
  36. * Heading..............Specific styles for the heading block.
  37. * Image................Specific styles for the image block.
  38. * Latest comments......Specific styles for the latest comments block.
  39. * Latest posts.........Specific styles for the latest posts block.
  40. * Legacy...............Specific styles for the legacy gallery.
  41. * List.................Specific styles for the list block.
  42. * Media text...........Specific styles for the media and text block.
  43. * Navigation...........Specific styles for the navigation block.
  44. * Paragraph............Specific styles for the paragraph block.
  45. * Pullquote............Specific styles for the pullquote block.
  46. * Quote................Specific styles for the quote block.
  47. * Search...............Specific styles for the search block.
  48. * Separator............Specific styles for the separator block.
  49. * Spacer...............Specific styles for the spacer block.
  50. * Table................Specific styles for the table block.
  51. * Verse................Specific styles for the verse block.
  52. * Video................Specific styles for the video block.
  53. * Utilities............Block alignments.
  54. *
  55. * COMPONENTS
  56. * Header...............Header styles.
  57. * Footer...............Footer styles.
  58. * Comments.............Comment styles.
  59. * Archives.............Archive styles.
  60. * 404..................404 styles.
  61. * Search...............Search styles.
  62. * Navigation...........Navigation styles.
  63. * Footer Navigation....Footer Navigation styles.
  64. * Pagination...........Pagination styles.
  65. * Single...............Single page and post styles.
  66. * Posts and pages......Misc, sticky post styles.
  67. * Entry................Entry, author biography.
  68. * Widget...............Widget styles.
  69. * Editor...............Editor styles.
  70. *
  71. * UTILITIES
  72. * A11y.................Screen reader text, prefers reduced motion etc.
  73. * Color Palette........Classes for the color palette colors.
  74. * Editor Font Sizes....Editor Font Sizes.
  75. * Measure..............The width of a line of text, in characters.
  76. */
  77. // Print................Print styles
  78. /* Categories 01 to 03 are the basics. */
  79. @import "01-settings/fonts";
  80. @import "01-settings/global";
  81. @import "02-tools/mixins";
  82. @import "02-tools/functions";
  83. @import "03-generic/normalize";
  84. @import "03-generic/breakpoints";
  85. @import "03-generic/vertical-margins";
  86. @import "03-generic/reset";
  87. @import "03-generic/clearings";
  88. /* Category 04 can contain any default HTML element. Do not add classes here, just give the elements some basic styles. */
  89. @import "04-elements/blockquote";
  90. @import "04-elements/forms";
  91. @import "04-elements/media";
  92. @import "04-elements/misc";
  93. @import "04-elements/links";
  94. /* Category 05 is all about adjusting the default block styles to the given layout. I only added three blocks as examples. */
  95. @import "05-blocks/blocks";
  96. /* Category 06 contains all "bigger" components which contain elements of the previous two categories like header, footer, page template, single template, comments section, archives, ... */
  97. @import "06-components/header";
  98. @import "06-components/footer";
  99. @import "06-components/single";
  100. @import "06-components/posts-and-pages";
  101. @import "06-components/entry";
  102. @import "06-components/archives";
  103. @import "06-components/404";
  104. @import "06-components/search";
  105. @import "06-components/comments";
  106. @import "06-components/navigation";
  107. @import "06-components/footer-navigation";
  108. @import "06-components/pagination";
  109. @import "06-components/widgets";
  110. /* Category 07 is for any utility classes that are not assigned to a specific component. */
  111. @import "07-utilities/a11y";
  112. @import "07-utilities/color-palette";
  113. @import "07-utilities/measure";
  114. @import "07-utilities/ie";