Skip to content

Instantly share code, notes, and snippets.

@enyasar
Forked from ademilter/Proje Klasör Düzeni
Last active August 29, 2015 14:20
Show Gist options
  • Select an option

  • Save enyasar/7474080d6e8c8a2212b5 to your computer and use it in GitHub Desktop.

Select an option

Save enyasar/7474080d6e8c8a2212b5 to your computer and use it in GitHub Desktop.
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