1.0.0 • Published 8 years ago

niduscss-material-fab v1.0.0

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

niduscss-material-fab

npm

Material design style used in FAB buttons for niduscss framework.

Installation

$ npm install niduscss-material-fab

Usage

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

Example: create a setting.css file:

:root {
  --FabButton-z-index: 8000;
  --FabButton-background: #ff7043;
  --FabButton-color: #fff;
}

Import styles:

styles.css:

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

/* Material components
   ========================================================================== */
@import "niduscss-material-fab";

/* Other styles */

Use in html files

<!-- Button usign material icons module -->
<button class="FabButton">
  <span class="FabButton-icon MaterialIcon">save</span>
</button>

Changelog