├── .gitignore ├── CHANGELOG.md ├── README.md └── standards ├── _images ├── sample-overlay.png └── sprite-icon.png ├── accessibility.md ├── browser-device-support.md ├── css.md ├── files-folders.md ├── html.md ├── methodology.md └── scss.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenerdery/html-css-standards/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenerdery/html-css-standards/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenerdery/html-css-standards/HEAD/README.md -------------------------------------------------------------------------------- /standards/_images/sample-overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenerdery/html-css-standards/HEAD/standards/_images/sample-overlay.png -------------------------------------------------------------------------------- /standards/_images/sprite-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenerdery/html-css-standards/HEAD/standards/_images/sprite-icon.png -------------------------------------------------------------------------------- /standards/accessibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenerdery/html-css-standards/HEAD/standards/accessibility.md -------------------------------------------------------------------------------- /standards/browser-device-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenerdery/html-css-standards/HEAD/standards/browser-device-support.md -------------------------------------------------------------------------------- /standards/css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenerdery/html-css-standards/HEAD/standards/css.md -------------------------------------------------------------------------------- /standards/files-folders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenerdery/html-css-standards/HEAD/standards/files-folders.md -------------------------------------------------------------------------------- /standards/html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenerdery/html-css-standards/HEAD/standards/html.md -------------------------------------------------------------------------------- /standards/methodology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenerdery/html-css-standards/HEAD/standards/methodology.md -------------------------------------------------------------------------------- /standards/scss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenerdery/html-css-standards/HEAD/standards/scss.md --------------------------------------------------------------------------------