-
-
Save enyasar/7474080d6e8c8a2212b5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| css/ | |
| |-- option/ # Ayarlar, Değişkenler ve Fonksiyonlar | |
| | |-- _theme.scss - projenin renk kodları ve genel tema ayarları | |
| | |-- _values.scss - offset, size, genel font ayarları, vs... | |
| | |-- _function.scss | |
| | |-- _mixin.scss | |
| | | |
| |-- helper/ # Yardımcı dosyalar | |
| | |-- _normalize.scss - https://github.com/necolas/normalize.css | |
| | |-- _formalize.scss - https://github.com/interacthings/formalize.css/ | |
| | | |
| |-- plugin/ # Eklentilere ait stil dosyaları | |
| | |-- ... | |
| | | |
| |-- utility/ # İnce ayarlar | |
| | |-- _typography.scss - h, p, em, sub gibi tipografi ayarları | |
| | |-- _icons.scss - svg veya font ikon tanımlamaları | |
| | |-- ... | |
| | | |
| |-- component/ # Tamamlayıcılar | |
| | |-- _form.scss - button, textbox, checkbox, select gibi sitiller | |
| | |-- _grid.scss - grid | |
| | |-- _form.scss - button, textbox, checkbox, select gibi sitiller | |
| | |-- ... | |
| | | |
| |-- global/ # Global stil dosyaları | |
| | |-- _header.scss | |
| | |-- _footer.scss | |
| | |-- _breadcrumbs.scss | |
| | |-- ... | |
| | | |
| |-- pages/ # Sayfaya özel still tanımlamaları | |
| | |-- _home.scss | |
| | |-- _categories.scss | |
| | | |
| |-- main.scss # Ana kapsayıcı (direkt olarak css yazılmaz sadece import edilir) | |
| | |-- // Option | |
| | |-- @import "option/theme" | |
| | |-- @import "option/values" | |
| | |-- @import "option/function" | |
| | |-- @import "option/mixing" | |
| | |-- | |
| | |-- // Helper | |
| | |-- @import "helper/normalize" | |
| | |-- @import "helper/formalize" | |
| | |-- | |
| | |-- // Plugin | |
| | |-- ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment