Last active
November 22, 2020 13:05
-
-
Save newtone/5079c3abe7e4cc4f851fc5de0dc59b3f to your computer and use it in GitHub Desktop.
This file contains 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
// new css structure -> as seen in https://matthiasott.com/notes/how-i-structure-my-css | |
/scss/ | |
├── 1-settings | |
│ └── _global.scss | |
├── 2-design-tokens | |
│ ├── _colors.scss | |
│ ├── _fonts.scss | |
│ ├── _media-queries.scss | |
│ ├── _spacing.scss | |
│ └── _typography.scss | |
├── 3-tools | |
│ ├── _aspect-ratio.scss | |
│ ├── _blend-modes.scss | |
│ ├── _center.scss | |
│ ├── _clearfix.scss | |
│ └── _gradients.scss | |
├── 4-generic | |
│ ├── _box-sizing.scss | |
│ ├── _font-face.scss | |
│ ├── _normalize.scss | |
│ └── _print.scss | |
├── 5-elements | |
│ ├── _forms.scss | |
│ ├── _headings.scss | |
│ ├── _images.scss | |
│ ├── _links.scss | |
│ ├── _lists.scss | |
│ └── ... | |
├── 6-skeleton | |
│ ├── _grid.scss | |
│ ├── _layouts.scss | |
│ └── _objects.scss | |
├── 7-components | |
│ ├── _accordion.scss | |
│ ├── _card.scss | |
│ ├── _hero.scss | |
│ ├── _pan-galactic-gargle-blaster.scss | |
│ └── ... | |
├── 8-utilities | |
│ ├── _modifiers.scss | |
│ └── _states.scss | |
├── _shame.scss | |
└── main.scss |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment