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

simple-flex

v0.1.1

Published

Simple utility for advanced web layouts using flex

Downloads

6

Readme

Simple Flex

Simple flex is a utility built to ease layout development with flex box It has classes made to simplify layout development using classes only

Basic usage

Just add sf class to the element and then add any of the alignment classes. for example:

<nav class="sf msb">
    <a class=""></a>
    <a class=""></a>
    ...
</nav>

Add the following classes for advanced use:

  • column - Convert the container a column
  • inline - Convert the container to a inline-flex element
  • wrap - make the elements in the container wrap when there is not enough space

Alignment

Simple flex gives you a list of simple classes to align your content in the container

       t - top      |l - left
                    |
                    |
---------------------------------------
                    |
     m - middle     |    c - center
                    |
---------------------------------------
                    |
                    |
     b - bottom     |        r - right

Using combinations of those classes you can align the content of the container in any direction. Simple flex also has built in combinations of all the alignment classes allowing you to easily control positioning of the content in your container

                    |                      |
    tl - top left   |    tc - top center   |   tr - top right
                    |                      |
------------------------------------------------------------------
                    |                      |
  ml - middle left  |  mc - middle center  |  mr - middle right
                    |                      |
------------------------------------------------------------------
                    |                      |
  bl - bottom left  |  bc - bottom center  |  br - bottom right
                    |                      |

Simple flex also supports advanced flex based alignment:

.sb - space-between
.tsb - top space-between
.msb - middle space-between
.bsb - bottom space-between

.sa - space-around
.tsa - top space-around
.msa - middle space-around
.bsa - bottom space-around

Columns

Simple flex has support for basic grids, it has an optional 12 columns grid, use classes c1-c12 for column width:

<div class="sf">
    <div class="c6">column 1/2</div>
    <div class="c6">column 1/2</div>
</div>
<div class="sf">
    <div class="c4">column 1/3</div>
    <div class="c4">column 1/3</div>
    <div class="c4">column 1/3</div>
</div>
<div class="sf">
    <div class="c4">column 1/3</div>
    <div class="c8">column 2/3</div>
</div>
<div class="sf">
    <div class="c3">column 1/4</div>
    <div class="c3">column 1/4</div>
    <div class="c3">column 1/4</div>
    <div class="c3">column 1/4</div>
</div>
|                             |                             |
|         column 1/2          |         column 1/2          |
|                             |                             |
-------------------------------------------------------------
|                   |                   |                   |
|    column 1/3     |    column 1/3     |    column 1/3     |
|                   |                   |                   |
-------------------------------------------------------------
|                   |                                       |
|    column 1/3     |               column 2/3              |
|                   |                                       |
-------------------------------------------------------------
|              |              |              |              |
|  column 1/4  |  column 1/4  |  column 1/4  |  column 1/4  |
|              |              |              |              |

Text Alignment

Simple text alignment helpers are also available

<div class="sa-left">left</div>
<div class="sa-center">center</div>
<div class="sa-right">right</div>

Spacing

Simple Spacing for elements

Available spacing modes:
    margin / padding

Built in sizes:
    none: 0rem
    xs: 0.333rem
    sm: 0.666rem
    md: 1rem
    lg: 1.333rem
    xl: 1.666rem
    xxl: 2rem

sides:
    all / top / right / bottom / left / tb (top & bottom) / lr (left & right)

example:
    <div class="padding-all-sm">small padding from all sides</div>
    <div class="margin-lr-xs">extra small margin from left and right</div>
    <div class="padding-top-xs padding-bottom-small">extra small padding from top and small from bottom</div>
    <div class="margin-children-all-xs">Gives all direct children BUT THE LAST spacing</div>

Installation

Simply import the css file to your project and start using Simple flex

Development: 
<link rel="stylesheet" href="//cdn.jsdelivr.net/gh/dcohenb/simple-flex@master/dist/simple-flex.css">

Production: 
<link rel="stylesheet" href="//cdn.jsdelivr.net/gh/dcohenb/[email protected]/dist/simple-flex.css">

License

MIT

Copyright (c) 2017-present, Daniel Cohen