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

fluidesign

v1.0.1

Published

a fluid design framework

Downloads

3

Readme

Fluidesign

A design system that scales content proportionally to any screen size. That means no more breakpoints, no more hacking code, and no more confusion from design to development. Fluidesign is design generated, development automated, and carefully perfected to make use of the most universal design concepts and CSS technology. And, it's IE11 compatible. :smirk:

Fluidesign uses a 12 column grid system with flexboxes and fluid typography to create a fully responsive fluid framework built entirely with the power of Sass. No Javascript involved!

Still in early testing. Contact me if you have questions or comments! Let's change the way we design and develop applications for the better.

Table of Contents

First, build a row using the .row class as a wrapper. Then add the number of columns based on how many columns you want in your 12 column grid.

Requirements

Fluidesign was built using the style preprocessor Sass and requires Sass to work properly.

Path

fluidesign/
├── fluidesign.sass
└── sass/
    ├── _columns.sass
    ├── _typography.sass
    └── _variables.sass

Documentation

Typography

To Use:

Add this code snippet to your sass file when declaring a font size. Replace minFontSize with your minimum font size (mobile) and maxFontSize with your maximum font size (desktop). Fluidesign will do the rest to determine what size your font should be for any screen size.

@include fluid-type(minFontSize, maxFontSize)

Grid

column-one : 1 column row Example:

<div class=".row"
  <div class="column-one">Column 1</div>
</div>

column-two : 2 column row Example:

<div class=".row"
  <div class="column-two">Column 1</div>
  <div class="column-two">Column 2</div>
</div>

column-three : 3 column row Example:

<div class=".row"
  <div class="column-three">Column 1</div>
  <div class="column-three">Column 2</div>
  <div class="column-three">Column 3</div>
</div>

column-four : 4 column row Example:

<div class=".row"
  <div class="column-four">Column 1</div>
  <div class="column-four">Column 2</div>
  <div class="column-four">Column 3</div>
  <div class="column-four">Column 4</div>
</div>

column-six : 6 column row Example:

<div class=".row"
  <div class="column-six">Column 1</div>
  <div class="column-six">Column 2</div>
  <div class="column-six">Column 3</div>
  <div class="column-six">Column 4</div>
  <div class="column-six">Column 5</div>
  <div class="column-six">Column 6</div>
</div>

column-twelve : 12 column row Example:

<div class=".row"
  <div class="column-twelve">Column 1</div>
  <div class="column-twelve">Column 2</div>
  <div class="column-twelve">Column 3</div>
  <div class="column-twelve">Column 4</div>
  <div class="column-twelve">Column 5</div>
  <div class="column-twelve">Column 6</div>
  <div class="column-twelve">Column 7</div>
  <div class="column-twelve">Column 8</div>
  <div class="column-twelve">Column 9</div>
  <div class="column-twelve">Column 10</div>
  <div class="column-twelve">Column 11</div>
  <div class="column-twelve">Column 12</div>
</div>

Copyright and license

Code and documentation copyright 2020 collinscott, released under the MIT License. Docs released under Creative Commons.