Skip to content

Commit 8ef5e49

Browse files
committed
Updated to 1.0.0 for release
1 parent f1b0706 commit 8ef5e49

File tree

5 files changed

+11
-9
lines changed

5 files changed

+11
-9
lines changed

Diff for: README.md

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
[![Build Status](https://travis-ci.org/krisbulman/normalize-libsass.svg?branch=master)](https://travis-ci.org/krisbulman/normalize-libsass)
22

3-
A libsass compatible sass port of normalize.css, a collection of HTML element and attribute style-normalizations.
3+
# normalize-libsass 1.0.0
44

5-
This project was created because libsass does not import .css files. This can be an annoying problem when using a package manager such as bower. This port also leverages Sass variables for optional customization and inspired by [JohnAlbin's Compass port](https://github.com/JohnAlbin/normalize-scss).
5+
A libsass compatible Sass port of normalize.css; a collection of HTML element and attribute style-normalizations.
66

7-
# normalize.css v3
7+
This project was created because libsass does not currently import .css files. This can be an annoying problem when using a package manager such as bower. This port also leverages Sass variables for optional customization and inspired by [JohnAlbin's Compass port](https://github.com/JohnAlbin/normalize-scss). While this port is compatible with libsass, Ruby Sass 3.3, and Ruby Sass 3.3 + Compass, it does not use vertical rhythm mixins, if you wish to have vertical rhythm integrated in with your reset, then use John's Compass port.
8+
9+
# normalize.css v3.0.2
810

911
Normalize.css is a customisable CSS file that makes browsers render all
1012
elements more consistently and in line with modern standards.
@@ -32,8 +34,8 @@ To use the libsass port of Normalize, simply:
3234
1. Copy the _normalize.scss file to your Sass directory
3335
2. Import the partial into your main Sass file with @import "normalize";
3436
and follow the "About normalize.css" article's suggestions:
35-
* Approach 1: use _normalize.scss as a starting point for your own project's base Sass, customising the values to match the design's requirements.
36-
* Approach 2: include _normalize.scss untouched and build upon it, overriding the defaults later in your Sass when necessary.
37+
* Approach 1: Use _normalize.scss as a starting point for your own project's base Sass, customising the values to match the design's requirements. See the included ```!default``` variables that can be customized in your project.
38+
* Approach 2: Include _normalize.scss untouched and build upon it, overriding the defaults later in your Sass when necessary. Set ```$strict-normalize: true;``` in your project.
3739

3840
## What does it do?
3941

Diff for: _normalize.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
////
2-
/// normalize-libsass 3.0.2+normalize.3.0.2
2+
/// normalize-libsass 1.0.0
33
/// MIT/GPLv2 License
44
/// lb.cm/normalize-libsass
55
////

Diff for: bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "normalize-libsass",
3-
"version": "3.0.2+normalize.3.0.2",
3+
"version": "1.0.0",
44
"homepage": "https://github.com/krisbulman/normalize-libsass",
55
"author": [
66
"Nicolas Gallagher",

Diff for: component.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "normalize-libsass",
33
"repo": "krisbulman/normalize-libsass",
44
"description": "A libsass compatible sass port of normalize.css, a collection of HTML element and attribute style-normalizations.",
5-
"version": "3.0.2+normalize.3.0.2",
5+
"version": "1.0.0",
66
"author": [
77
"Nicolas Gallagher",
88
"Kris Bulman"

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "normalize-libsass",
3-
"version": "3.0.2+normalize.3.0.2",
3+
"version": "1.0.0",
44
"description": "A libsass compatible sass port of normalize.css, a collection of HTML element and attribute style-normalizations.",
55
"devDependencies": {
66
"grunt": "~0.4",

0 commit comments

Comments
 (0)