Git Product home page Git Product logo

olcaneristi / normalize-scss Goto Github PK

View Code? Open in Web Editor NEW

This project forked from johnalbin/normalize-scss

2.0 0.0 0.0 1.11 MB

This is the Sass version of Normalize.css, a collection of HTML element and attribute rulesets to normalize styles across all browsers.

Home Page: https://github.com/JohnAlbin/normalize-scss#latest-versions

License: MIT License

CSS 74.36% Ruby 1.17% JavaScript 4.70% HTML 19.78%

normalize-scss's Introduction

normalize-scss

Latest versions

For use with… normalize-scss version
Sass 3.4 or libSass 8.0.0
combining normalize.css v7.0.0 with v1.1.3
Compass or Bower 7.0.0
combining normalize.css v7.0.0 with v1.1.3 (last version with Compass and Bower support)
Ruby Sass 3.3 3.0.3
combining normalize.css v3.0.3 with v1.1.3
Ruby Sass 3.2 2.2.0+normalize.2.1.3
combining normalize.css v2.1.3 with v1.1.3

The Sass port of normalize.css

This project is the Sass version of Normalize.css, a collection of HTML element and attribute rulesets to normalize styles across all browsers. This port aims to use a light dusting of Sass to make Normalize even easier to integrate with your website. To learn about why Normalize.css is so amazing, skip to the "normalize.css" section below.

This Sass port currently adds:

  • Vertical rhythm mixins: Allowing you to alter the font-size, line-height and margins in Normalize’s output without hacking the library.
  • Optional Eyeglass support.
  • Several ready-to-fork versions that integrate typography Sass modules like Typey, or style guides built with KSS.

normalize.css v5

A modern alternative to CSS resets

Normalize.css is a customisable CSS file that makes browsers render all elements more consistently and in line with modern standards.

The project relies on researching the differences between default browser styles in order to precisely target only the styles that need or benefit from normalizing.

View the test file

What does it do?

  • Preserves useful defaults, unlike many CSS resets.
  • Normalizes styles for a wide range of elements.
  • Corrects bugs and common browser inconsistencies.
  • Improves usability with subtle modifications.
  • Explains what code does using detailed comments.

Install

Install using one of the following methods:

  • Download directly from the project page.
  • Install with npm: npm install --save normalize-scss
  • Install with Ruby Gem: gem install normalize-scss
    and, optionally, add require "normalize-scss" to your config.rb file. Note: if you want to alter the _normalize.scss file after installation (see "how to use it" below), you can use the gem list --details normalize-scss command to show you where the normalize-scss files were installed.

How to use it

There is a fantastic introduction to the project and brief instructions how to use it in the About normalize.css article.

You can use the Sass port of Normalize in one of several methods, following the "About normalize.css" article's suggestions:

Approach 1: Download and use normalize-scss as a starting point for your own project's base Sass, customising the values to match the design's requirements. (The best approach, IMO.)

  1. Copy the normalize-scss files to your sass directory so that you can alter it as you include it in your project. To aid with this method, normalize-scss includes several ready-made "fork" versions: * fork-versions/default - Fork for libSass or Ruby Sass * fork-versions/typey - Fork with Typey * fork-versions/typey-chroma-kss - Fork with Typey, Chroma and KSS

Approach 2: Install and include normalize-scss untouched and then build upon it, overriding the defaults later in your Sass when necessary. Just import normalize-scss like any normal Sass module by:

  1. Set variables to override the default normalize-scss variables.
  2. (Optionally) add an additional [path to]/normalize-scss/sass import path for your Sass compiler, e.g. node-sass' includePaths option or Ruby Sass' --load-path option.
  3. Import with @import "normalize"; or with @import "[path to]/normalize-scss/sass/normalize"; (if you skipped step 2.)
  4. Output the CSS rules with @include normalize();

Alternatively, you can import normalize-scss immediately into your main Sass file without needing to use the normalize() mixin by:

  1. (Optionally) set variables to override the default normalize-scss variables.
  2. (Optionally) add an additional [path to]/normalize-scss/sass import path for your Sass compiler, e.g. node-sass' includePaths option or Ruby Sass' --load-path option.
  3. Import with @import "normalize/import-now"; or with @import "[path to]/normalize-scss/sass/normalize/import-now"; (if you skipped step 2.)

Note: if you use wiredep, normalize-scss's bower.json points at the normalize/import-now Sass partial. If you don't wish to immediately output the CSS, you will need to override the Sass partial that wiredep grabs from normalize-scss.

Browser support

  • Chrome (last four)
  • Edge (version 25 and later)
  • Firefox (last four)
  • Firefox ESR
  • Internet Explorer 9+
  • Opera (last four)
  • Safari (last four)

Extended details and known issues

Additional detail and explanation of the esoteric parts of normalize.css.

pre, code, kbd, samp

The font-family: monospace, monospace hack fixes the inheritance and scaling of font-size for preformatted text. The duplication of monospace is intentional. Source.

sub, sup

Normally, using sub or sup affects the line-box height of text in all browsers. Source.

svg:not(:root)

Adding overflow: hidden fixes IE9's SVG rendering. Earlier versions of IE don't support SVG, so we can safely use the :not() and :root selectors that modern browsers use in the default UA stylesheets to apply this style. Source.

select

By default, Chrome on OS X and Safari on OS X allow very limited styling of select, unless a border property is set. The default font weight on optgroup elements cannot safely be changed in Chrome on OSX and Safari on OS X.

[type="checkbox"]

It is recommended that you do not style checkbox and radio inputs as Firefox's implementation does not respect box-sizing, padding, or width.

[type="number"]

Certain font size values applied to number inputs cause the cursor style of the decrement button to change from default to text.

[type="search"]

The search input is not fully stylable by default. In Chrome and Safari on OSX/iOS you can't control font, padding, border, or background. In Chrome and Safari on Windows you can't control border properly. It will apply border-width but will only show a border color (which cannot be controlled) for the outer 1px of that border. Applying -webkit-appearance: textfield addresses these issues without removing the benefits of search inputs (e.g. showing past searches). Safari (but not Chrome) will clip the cancel button on when it has padding (and textfield appearance).

Contributing

Please read Normalize.css' contributing guidelines.

Updates to most CSS rules should be reported to the upstream Normalize.css project. Updates to the Sass should be reported in the Normalize-scss project.

Acknowledgements

Normalize.css is a project by Nicolas Gallagher, co-created with Jonathan Neal.

This Sass port is a project by John Albin Wilkins.

Other ports of Normalize.css

For the record, there are several other Sass ports as well. Including:

Build Status

normalize-scss's People

Contributors

alrra avatar austinwi avatar battaglr avatar calvein avatar dawidkkruczek avatar drublic avatar fritx avatar geobde avatar gouch avatar grayghostvisuals avatar greenkeeperio-bot avatar hudochenkov avatar jeremenichelli avatar johnalbin avatar jonathantneal avatar jonstuebe avatar kazssym avatar limeblast avatar mathiasbynens avatar mattbrundage avatar mdouglasbrett avatar moox avatar necolas avatar patrickhlauke avatar paulradzkov avatar phenomnomnominal avatar rdela avatar seutje avatar slavanga avatar wilddeer avatar

Stargazers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.