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

campfire-heights

v1.0.2

Published

campfire.css CSS module for setting heights

Downloads

1

Readme

campfire-heights npm version

campfire.css CSS module for setting heights

Installation

With npm

npm install --save-dev campfire-heights

With Git

http:

git clone https://github.com/campfire-css/campfire-heights

ssh:

git clone [email protected]:campfire-css/campfire-heights.git

Usage

Using with PostCSS

Import the css module

@import "campfire-heights";

The CSS

/*

    campfire.css
    HEIGHTS
    https://github.com/campfire-css/campfire-heights

    Legend:
        height-1 = 8px
        height-2 = 16px
        height-3 = 24px
        height-4 = 32px
        height-5 = 40px
        height-6 = 48px
        height-7 = 56px
        height-8 = 64px
        height-9 = 72px
        height-10 = 80px
        height-11 = 88px
        height-12 = 96px
        height-13 = 104px
        height-14 = 112px
        height-15 = 120px
        height-16 = 128px
        height-17 = 136px
        height-18 = 144px
        height-19 = 152px
        height-20 = 160px

        viewport-height-1: 25vh
        viewport-height-2: 50vh
        viewport-height-3: 75vh
        viewport-height-4: 100vh

*/


:root {

    --base-height: 8px;

    --height-1: var(--base-height);
    --height-2: calc( var(--base-height) * 2 );
    --height-3: calc( var(--base-height) * 3 );
    --height-4: calc( var(--base-height) * 4 );
    --height-5: calc( var(--base-height) * 5 );
    --height-6: calc( var(--base-height) * 6 );
    --height-7: calc( var(--base-height) * 7 );
    --height-8: calc( var(--base-height) * 8 );
    --height-9: calc( var(--base-height) * 9 );
    --height-10: calc( var(--base-height) * 10 );
    --height-11: calc( var(--base-height) * 11 );
    --height-12: calc( var(--base-height) * 12 );
    --height-13: calc( var(--base-height) * 13 );
    --height-14: calc( var(--base-height) * 14 );
    --height-15: calc( var(--base-height) * 15 );
    --height-16: calc( var(--base-height) * 16 );
    --height-17: calc( var(--base-height) * 17 );
    --height-18: calc( var(--base-height) * 18 );
    --height-19: calc( var(--base-height) * 19 );
    --height-20: calc( var(--base-height) * 20 );

    --viewport-height-1: 25vh;
    --viewport-height-2: 50vh;
    --viewport-height-3: 75vh;
    --viewport-height-4: 100vh;

}

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

Authors

License

ISC