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 🙏

© 2026 – Pkg Stats / Ryan Hefner

flexing-skeleton.css

v1.0.35

Published

![flexing-skeleton.css](/flexing-skeleton.png)

Readme

flexing-skeleton.css

flexing-skeleton.css

A tiny css framework with a mix between the Bootstrap and Skeleton grid systems that uses flexbox. It happily uses the beautiful Inter font along with Roboto Mono.

Installation

To get started, just copy the main stylesheet from the dist folder and include it in your project. Alternatively, you can work with the scss files: Run the command npm install to install the packages required, then use the following commands in your terminal to get started:

  • npm run scss:watch-nested to watch changes and automatically compile them to dist/flexing-skeleton.css.
  • npm run scss:watch-compressed to watch changes and automatically compile them to dist/flexing-skeleton.min.css.
  • npm run scss:compile to compile the scss to dist/flexing-skeleton.css and dist/flexing-skeleton.min.css.

The grid system

  • The grid system uses a .container class to add vertical spacing around your content.
  • Inside, you can add .rows with columns inside as shown in the example below.
  • Use .row.without-gutters to remove the gutters between columns.
  • You can use .automatic.columns to make the columns spread evenly throughout the row, or specify the column width from one to twelve by using a class like .five.columns. Just make sure the columns in a row are direct children of it and add up to twelve.
  • To top it all off, you can offset your columns by adding a class like .offset-by-three on the column class.

An example that makes you realize it's mostly the same as skeleton.css

<div class="container">
  <div class="row">
    <div class="one column">
      <!-- Some interesting words -->
    </div>

    <div class="four columns offset-by-four">
      <!-- Some more interesting words -->
    </div>
  </div>

  <div class="row without-gutters">
    <div class="automatic columns">
      <!-- Even more of your interesting words -->
    </div>

    <div class="automatic columns">
      <!-- Maybe add an interesting image -->
    </div>

    <div class="automatic columns">
      <!-- Or maybe link to some more interesting stuff -->
    </div>
  </div>
</div>

Code by Rien Stenekes