npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

assemble-buttons

v1.1.0

Published

Buttons for the Assemble CSS Framework

Downloads

122

Readme

Assemble Buttons

Assemble Buttons is a component of the Assemble CSS Framework. It will give you a solid base for buttons in your project. It has some default styles that can easily be overridden so you can add your own look.

Requirements

Assemble Buttons requires Assemble Base.

Installation

npm install assemble-buttons --save-dev

Usage

Gulp

var gulp = require('gulp');
var postcss = require('gulp-postcss');
var assembleBase = require('assemble-base');
var assembleButtons = require('assemble-buttons');

gulp.task('css', function () {
    var processors = [
        assembleBase,
        assembleButtons
    ];
    return gulp.src('./src/*.css')
        .pipe(postcss(processors))
        .pipe(gulp.dest('./dest'));
});

Then import the _assemble-buttons.css file from your css file.

@import '../node_modules/assemble-base/base';

/*
Override variables here before the Assemble Components are loaded.
*/

@import '../node_modules/assemble-buttons/assemble-buttons';

Options

Options are set with variables. These variables are already set with their default values so they will just work out of the box. If you wish to change them just define the variable you want to change before you load the _assemble-modals.css file. You may wish you see Assemble Base for more examples and directions for setting up a Assemble project.

Design Variables

$btn-size-ratio
  • Set how quickly the buttons scale.
  • Default: 1.2;
  • Type: Number
$btn-size-ratio: 1;
$btn-padding
  • Button padding. Can have single or multiple values.
  • Default: 0.7em;
  • Type: Number
$btn-padding: 5px 10px;
$btn-default-font-size
  • The default button font size
  • Default: 100%;
  • Type: Number
$btn-padding: 5px 10px;
$btn-border-size
  • The size of the button border. Is only used if border-color is used.
  • Default: 1px;
  • Type: Number
$btn-border-size: 2px;
$btn-disabled-bg-color
  • The background color of a disabled button. Is only used if $btn-disabled is true.
  • Default: #DDD;
  • Type: Color
$btn-disabled-bg-color: #BBB;
$btn-disabled-text-color
  • The text color of a disabled button. Is only used if $btn-disabled is true.
  • Default: #777;
  • Type: Color
$btn-disabled-text-color: #EEE;
Button Colors

You will need to set a color class by using this syntax: .btn--(color name) Then you have six options to set. None are required. They are:

  • bg-color
  • text-color
  • border-color
  • bg-hover-color
  • text-hover-color
  • border-hover-color
Example
.btn--primary{
    bg-color: green;
    text-color: white;
    border-color: black;
    bg-hover-color: orange;
    text-hover-color: black;
    border-hover-color: red;
}

Will output:

.btn--primary{
    background: green;
    color: white;
    border-color: black;
}

.btn--primary:hover,
.btn--primary:active{
    background: orange;
    color: black;
    border-color: red;
}

Usage

<a class="btn  btn--primary">Primary Button</a>

Modifier Variables

Button Sizes

$btn--large
  • Turn on/off large buttons for your application. If set to true a .btn--large class will be generated.
  • Default: false;
  • Type: Boolean
$btn-large: true;

Will give you:

.btn--large{
    font-size: calc($btn-default-font-size * $btn-size-ratio);
}

Usage

<a class="btn  btn--large">Primary Button</a>
<a class="btn  btn--primary  btn--large">Primary Button</a>
$btn--small
  • Turn on/off small buttons for your application. If set to true a .btn--small class will be generated.
  • Default: false;
  • Type: Boolean
$btn--small: true;

Will give you:

.btn--small{
    font-size: calc($btn-default-font-size / $btn-size-ratio);
}

Usage

<a class="btn  btn--small">Primary Button</a>
<a class="btn  btn--primary  btn--small">Primary Button</a>
$btn--block
  • Turn on/off block buttons for your application. If set to true a .btn--block class will be generated.
  • Default: false;
  • Type: Boolean
$btn-block: true;

Will give you:

.btn--block{
    display: block;
    width: 100%;
    text-align: center;
}

Usage

<a class="btn  btn--block  btn--primary">Block Primary Button</a>

Button Types

$btn--natural
  • Turn on/off natural buttons for your application. If set to true a .btn--natural class will be generated.
  • Use this if you'd like buttons to appear in the middle of sentences.
  • Default: false;
  • Type: Boolean
$btn--natural: true;

Will give you:

.btn--natural{
    height: auto;
    padding-right: 0.5em;
    padding-left: 0.5em;
    font-size: inherit;
    line-height: inherit;
    vertical-align: baseline;
}

Usage

<p>Here is some next that has a <a class="btn  btn--natural  btn--small  btn--secondary">button natural</a> in the middle of it.</p>
$btn--disabled
  • Turn on/off disabled buttons for your application. If set to true a .btn--disabled class will be generated.
  • Use this if you will be having buttons that are disabled in your app.
  • Default: false;
  • Type: Boolean
$btn--disabled: true;

Will give you:

.btn--disabled{
    background-color: $btn-disabled-bg-color !important;
    color: $btn-disabled-text-color !important;
}

.btn--disabled:hover,
.btn--disabled:active,
.btn--disabled:focus{
    background-color: $btn-disabled-bg-color !important;
    cursor: not-allowed !important;
    color: $btn-disabled-text-color !important;
}

Usage

<a class="btn  btn--disabled">Disabled Primary Button</a>

Button Group

  • Turn on/off grouped buttons for your application. If set to true a .btn-group class will be generated.
  • Use this if you will be having buttons that are grouped together in your app.
  • You will need to have a wrapping div around your buttons that has the class .btn-group.
  • Default: false;
  • Type: Boolean
  • If true the css for button groups will be loaded.
$btn-group: true;

Will give you:

.btn-group{
    clear: fix;
    display: inline-block;
    position: relative;
    white-space: nowrap;
    vertical-align: middle;
}

.btn-group > *{
    float: left;
}

Usage

<div class="btn-group">
    <a class="btn  btn--small  btn--secondary">Button One</a>
    <a class="btn  btn--small  btn--secondary">Button One</a>
    <a class="btn  btn--small  btn--secondary">Button One</a>
</div>

Button Clean Up

  • Included automatically
.btn:hover,
.btn:active,
.btn:focus,
.btn:visited{
    text-decoration: none;
}

.btn:active,
.btn:focus{
    outline: none;
}

.btn::-moz-focus-inner{
    padding: 0;
    border: 0;
}