章節連結
Sass 隨著專案大小的越發增加,是可以透過引入 import 這個動作,來做到結構化的維護管理的。換言之,你可以在一個作為索引的 index 的 scss 檔中,引入其他的 scss 檔。如此一來,你要進行細微的改動也會更加方便。
課程對應章節
Course 17 ~ Course 23 (全部一共有 72 Courses)
請注意:本系列文章為個人對應課程的消化吸收後,所整理出來的內容。換言之,並不一定會包含全部的課程內容,也有可能會添加其他資源來說明。課程連結網址:http://tinyurl.com/ueo7bm2
內容
1. 使用者可以新建一個索引的 scss 檔(如 all.scss),在裡頭 import 其他的 scss 檔案,這樣可以方便管理。
2. 將常用的變數、手機版本程式碼……等依照個人需求,獨立抽出成獨立檔案。這些獨立檔案要以 “_”作為開頭,這樣在索引檔案就可以用 @import “yourFileName” 來引入。
3. 讀取順序依舊是由上而下。因此,作為變數管理的 scss 檔建議於一開始就引入,以免意外的錯誤發生。
範例
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 |
// all.scss @import "general"; @import "header"; // _general.scss $default-font-size:16px; $default-font-family:'Montserrat', sans-serif; $default-font-color:black; $default-background-color:#fff; $default-line-height:1.42857143; *{ box-sizing: border-box; } html{ width:100%; height:100%; } body{ width:100%; height:100%; padding:0px; margin:0px; font-size: $default-font-size; line-height: $default-line-height; color:$default-font-color; background-color: $default-background-color; font-family: $default-font-family; } h1, h2, h3, h4, h5, h6, p,ul,ol { margin: 0px; padding: 0px; } h2 { margin-bottom: 20px; text-align: center; font-size: $default-font-size*2.3; line-height: 60px; letter-spacing: 2px; font-weight: bold; } ul, ol { list-style: none; } a, a:hover, a:focus{ padding: 0px; text-decoration: none; } img { width: 100%; height: auto; display: block; } .container{ margin:20px auto; position: relative; top:120px; } .clearfix::after { content: ''; display: table; clear: both; } // _header.scss .header{ position: fixed; width: 100%; left: 0; right: 0; max-height:100px; z-index: 20; background-color: #003831; .showMenu{ display:none; } .menu{ li{ display:inline-block; a{ color:#fff; text-transform: capitalize; display: block; padding: 25px 12px; font-size:20px; font-weight: bold; &:hover{ color:gray; } } } } } // output 的 css @charset "UTF-8"; * { -webkit-box-sizing: border-box; box-sizing: border-box; } html { width: 100%; height: 100%; } body { width: 100%; height: 100%; padding: 0px; margin: 0px; font-size: 16px; line-height: 1.42857; color: black; background-color: #fff; font-family: "Montserrat", sans-serif; } h1, h2, h3, h4, h5, h6, p, ul, ol { margin: 0px; padding: 0px; } h2 { margin-bottom: 20px; text-align: center; font-size: 36.8px; line-height: 60px; letter-spacing: 2px; font-weight: bold; } ul, ol { list-style: none; } a, a:hover, a:focus { padding: 0px; text-decoration: none; } img { width: 100%; height: auto; display: block; } .container { margin: 20px auto; position: relative; top: 120px; } .clearfix::after { content: ''; display: table; clear: both; } .header { position: fixed; width: 100%; left: 0; right: 0; max-height: 100px; z-index: 20; background-color: #003831; } .header .showMenu { display: none; } .header .menu li { display: inline-block; } .header .menu li a { color: #fff; text-transform: capitalize; display: block; padding: 25px 12px; font-size: 20px; font-weight: bold; } .header .menu li a:hover { color: gray; } |