├── .gitignore ├── README.md ├── Rakefile ├── compass-normalize.gemspec ├── lib └── compass-normalize.rb ├── stylesheets ├── _normalize-version.scss ├── _normalize.scss └── normalize │ ├── _base.scss │ ├── _embeds.scss │ ├── _forms.scss │ ├── _groups.scss │ ├── _html5.scss │ ├── _links.scss │ ├── _tables.scss │ └── _typography.scss └── templates └── project ├── manifest.rb └── screen.scss /.gitignore: -------------------------------------------------------------------------------- 1 | builds 2 | *.gem 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksmandersen/compass-normalize/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" -------------------------------------------------------------------------------- /compass-normalize.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksmandersen/compass-normalize/HEAD/compass-normalize.gemspec -------------------------------------------------------------------------------- /lib/compass-normalize.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksmandersen/compass-normalize/HEAD/lib/compass-normalize.rb -------------------------------------------------------------------------------- /stylesheets/_normalize-version.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksmandersen/compass-normalize/HEAD/stylesheets/_normalize-version.scss -------------------------------------------------------------------------------- /stylesheets/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksmandersen/compass-normalize/HEAD/stylesheets/_normalize.scss -------------------------------------------------------------------------------- /stylesheets/normalize/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksmandersen/compass-normalize/HEAD/stylesheets/normalize/_base.scss -------------------------------------------------------------------------------- /stylesheets/normalize/_embeds.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksmandersen/compass-normalize/HEAD/stylesheets/normalize/_embeds.scss -------------------------------------------------------------------------------- /stylesheets/normalize/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksmandersen/compass-normalize/HEAD/stylesheets/normalize/_forms.scss -------------------------------------------------------------------------------- /stylesheets/normalize/_groups.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksmandersen/compass-normalize/HEAD/stylesheets/normalize/_groups.scss -------------------------------------------------------------------------------- /stylesheets/normalize/_html5.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksmandersen/compass-normalize/HEAD/stylesheets/normalize/_html5.scss -------------------------------------------------------------------------------- /stylesheets/normalize/_links.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksmandersen/compass-normalize/HEAD/stylesheets/normalize/_links.scss -------------------------------------------------------------------------------- /stylesheets/normalize/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksmandersen/compass-normalize/HEAD/stylesheets/normalize/_tables.scss -------------------------------------------------------------------------------- /stylesheets/normalize/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksmandersen/compass-normalize/HEAD/stylesheets/normalize/_typography.scss -------------------------------------------------------------------------------- /templates/project/manifest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksmandersen/compass-normalize/HEAD/templates/project/manifest.rb -------------------------------------------------------------------------------- /templates/project/screen.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksmandersen/compass-normalize/HEAD/templates/project/screen.scss --------------------------------------------------------------------------------