All Projects → ixkaito → Unreset.css

ixkaito / Unreset.css

Licence: mit
Unreset CSS restores browsers' default element styles which are reset by Eric Meyer's Reset CSS, YUI 3 Reset CSS, HTML5 Reset Stylesheet of HTML5 Doctor, or Tim Murtaugh's HTML5 Reset.

Projects that are alternatives of or similar to Unreset.css

Sass Recipes
Sass things that I do all the time or should remember to do because googling tutorials gets old
Stars: ✭ 156 (+550%)
Mutual labels:  npm, sass
Avalanche
A package based CSS framework.
Stars: ✭ 86 (+258.33%)
Mutual labels:  npm, sass
Php Sf Flex Webpack Encore Vuejs
A simple app skeleton to try to make every components work together : symfony 4 (latest stable at the date, but work with sf 3.3+ if you just change the versions in composer.json), symfony/flex, webpack-encore, vuejs 2.5.x, boostrap 4 sass
Stars: ✭ 118 (+391.67%)
Mutual labels:  npm, sass
100 Days Of Code Frontend
Curriculum for learning front-end development during #100DaysOfCode.
Stars: ✭ 2,419 (+9979.17%)
Mutual labels:  npm, sass
Input Range Scss
Styling Cross-Browser Compatible Range Inputs with Sass
Stars: ✭ 272 (+1033.33%)
Mutual labels:  npm, sass
Eyeglass
NPM Modules for Sass
Stars: ✭ 741 (+2987.5%)
Mutual labels:  npm, sass
Vanilla Framework
From community websites to web applications, this CSS framework will help you achieve a consistent look and feel.
Stars: ✭ 476 (+1883.33%)
Mutual labels:  npm, sass
Sass A11ycolor
🌈 Generate the nearest accessible color with Sass.
Stars: ✭ 24 (+0%)
Mutual labels:  npm, sass
Declarativ
A declarative HTML rendering library that is definitely not JSX.
Stars: ✭ 16 (-33.33%)
Mutual labels:  npm
Fake Tag
A fake template literal tag to trick syntax highlighters, linters and formatters into action.
Stars: ✭ 22 (-8.33%)
Mutual labels:  npm
Npm Font Open Sans
npm package of Open Sans (incl. CSS/LESS/SCSS)
Stars: ✭ 6 (-75%)
Mutual labels:  npm
Flexbox
CSS library for easier work with flex boxes
Stars: ✭ 17 (-29.17%)
Mutual labels:  sass
Functions.js
📦 A hub of numerous functions with various functionalities
Stars: ✭ 22 (-8.33%)
Mutual labels:  npm
Selft Resume Website
selft-resume-website,用react开发的简单的个人简历网站。适合react新手入门练习。
Stars: ✭ 7 (-70.83%)
Mutual labels:  sass
Interactive Git Tag
Interactive tool that helps with your git tagging by suggesting versions
Stars: ✭ 24 (+0%)
Mutual labels:  npm
Showdown Htmlescape
Plugin for Showdown to prevent the use of arbitrary HTML and allow only the specific Markdown syntax.
Stars: ✭ 6 (-75%)
Mutual labels:  npm
Instantbootstrap
Instant Bootstrap is a quick and easy way to start creating bootstrap themes using LESS, SASS, GRUNT, and BOWER.
Stars: ✭ 5 (-79.17%)
Mutual labels:  sass
Terminus Theme Hype
A Terminus theme that imitates Hyper
Stars: ✭ 24 (+0%)
Mutual labels:  sass
Snm
🤏 Smol Node Manager written in Rust
Stars: ✭ 24 (+0%)
Mutual labels:  npm
Uicookbook
A few recipes and build workflows for UI dev
Stars: ✭ 19 (-20.83%)
Mutual labels:  sass

unreset.css npm

Unreset.css restores browsers' default element styles which are reset by Eric Meyer's Reset CSS, YUI 3 Reset CSS, HTML5 Reset Stylesheet of HTML5 Doctor, or Tim Murtaugh's HTML5 Reset.

Unreset.css is based on these layout engines' default styles:

The sources are in the defaults directory.

Install

With npm:

$ npm install --save unreset-css

Or, download manually:

unreset.css unreset.css unreset.min.css

Import

Sass:

.unreset {
    @import 'node_modules/unreset-css/unreset';
}

Node-sass:

  1. If you’re using Eyeglass, skip to Step 2. Otherwise, you’ll need to add unreset.css to your node-sass includePaths option. require("unreset-css").includePaths is an array of directories that you should pass to node-sass. How you do this depends on how node-sass is integrated into your project.

  2. Import unreset.css into your Sass files:

    .unreset {
        @import "unreset";
    }
    

CSS:

<link rel="stylesheet" href="unreset.css">

or

<link rel="stylesheet" href="unreset.min.css">

Usage

Add a unreset class to the container of the elements needing to be unreset.

<div class="unreset">
    <h1>This is an H1</h1>
    <p>This is a paragraph.</p>
    <ul>
        <li>This is a list item.</li>
        <li>This is a list item.</li>
    </ul>
</div>

License

MIT © Kite

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].