1--- 2# Only the main Sass file needs front matter (the dashes are enough) 3--- 4@charset "utf-8"; 5 6 7@import 8 9 "skins/{{ site.text_skin | default: site.data.variables.default.text_skin }}", 10 // "skins/chocolate", 11 // "skins/dark", 12 // "skins/default", 13 // "skins/forest", 14 // "skins/ocean", 15 // "skins/orange", 16 17 "skins/highlight/{{ site.highlight_theme | default: site.data.variables.default.highlight_theme }}", 18 // "skins/highlight/tomorrow", 19 // "skins/highlight/tomorrow-night", 20 // "skins/highlight/tomorrow-night-eighties", 21 // "skins/highlight/tomorrow-night-blue", 22 // "skins/highlight/tomorrow-night-bright", 23 24 25 "common/variables", 26 "common/function", 27 "common/classes", 28 "common/reset", 29 "common/print", 30 "common/components/button", 31 "common/components/image", 32 "common/components/card", 33 "common/components/gallery", 34 "common/components/hero", 35 "common/components/menu", 36 "common/components/modal", 37 "common/components/toc", 38 "common/components/item", 39 "common/components/swiper", 40 41 "animate/fade-in", 42 "animate/fade-in-down", 43 "animate/fade-in-up", 44 45 "components/main", 46 "components/header", 47 "components/footer", 48 "components/article-list", 49 "components/article-info", 50 "components/article-header", 51 "components/article-content", 52 "components/article-footer", 53 "components/author-links", 54 "components/author-profile", 55 "components/tags", 56 "components/search", 57 "components/lightbox", 58 "components/extensions", 59 60 61 "additional/alert", 62 "additional/tag", 63 "additional/photo-frame", 64 65 "layout/base", 66 "layout/page", 67 68 "layout/article", 69 "layout/articles", 70 "layout/archive", 71 "layout/home", 72 "layout/landing", 73 "layout/404", 74 75 "custom" 76;