1.0.1 • Published 8 years ago

niduscss-base v1.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

niduscss-base

npm

Base css styles that provides a normalize and starting point.

Installation

$ npm install niduscss-base

Usage

Define the custom properties in a file if you like modify the default values:

Example: create a setting.css file:

:root {
  --App-background: #f5f5f5;
  --App-textcolor: #262626;
  --App-basefont: Lato, Helvetica, "Roboto Slab", "Droid Serif", "Segoe UI Bold", sans-serif;
}

Import styles:

styles.css:

/* Import first de file with custom properties or declare before import the
   component.
   ========================================================================== */
   
@import "settings";

/* Base styles
   ========================================================================== */
@import "niduscss-base";

/* Other styles */

Changelog