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

fluent-css

v1.3.2

Published

write fluent css

Downloads

20

Readme

Navigate in the package folder

cd node_modules/fluent-css

Install dependencies

// ../node_modules/fluent-css 
npm install

Create the fluent-css.json for your personal settings (will be created in your project-root)

// ../node_modules/fluent-css 
npm run init

Create css files

// ../node_modules/fluent-css 
npm run build

Usage of fluent-css

to import fluent-css, simply copy this line in your scss stylesheet (or the name you specified)

@import 'fluent-css'; // absolute path from your stylesheet e.g. -> ./fluent-css/fluent-css by default

padding and margin

<div class="padding-px pb-14 pl-14">
	...
</div>

<div class="margin-percent mb-14 ml-14-important">
	...
</div>

Style behind

.padding-px { 
   &.pb-1 {
      padding-bottom: 1px;
   }

   &.pb-1-important {
      padding-bottom: 1px !important;
   }

   // also with minus for margin (invalid for padding!)
   &.mb-neg-1 {
      margin-bottom: -1px;
   }
}
<div class="display-inline-block">
	<!-- easy! right? -->
</div>

Packages (Work in Progress)

  • margin-padding.scss
  • border.scss
  • position.scss
  • display.scss
  • z-index.scss
  • font.scss
  • pointer-events.scss

Available Classes

margin-padding.scss

// units: rem, em, px, percent

.margin-px.m-1 // margin: 1px

.margin-px.mb-1 // margin-bottom: 1px; mb, mt, ml, mr 
.margin-percent.mb-1  // up to 64 .mb-64
.padding-px.mb-1

// !important
.margin-px.mb-1-important

// negative (not valid for padding!)
.margin-px.mb-neg-1

border.scss

// dotted, dashed, solid, double, groove, ridge, inset, outset, thin, medium, thick, initial, inherit 

.border-1
.border-solid
.border-solid-1 // (1-5)
.border-solid-thin
.border-solid-thin-green // 140 colors
.border-left-1
.border-left-solid
.border-left-solid-1-green

position.scss


// static, absolute, fixed, relative, sticky, initial, inherit
.position-absolute
.position-absolut-important

// units: rem, em, px, percent
.position-px.top-1 // top: 1px

display.scss

/*
inline, block, contents, flex, grid, inline-block, inline-flex, inline-grid, inline-table, list-item, run-in, table, table-caption, table-column-group, table-header-group, table-footer-group, table-row-group, table-cell, table-column, table-row, none, initial, inherit
*/
.display-inline
.display-inline-important

z-index.scss

.z-index-0 // 0-64
.z-index-0-important

font.scss

// units: rem, em, px, percent

.font-size-px.font-size-1;
.font-size-percent.font-size-5; // 0, 5, 10... steps of 5 on percent
.font-weight-bold // 100-900, lighter, bold, bolder, normal
.font-color-green
.font-style-italic // normal, italic, oblique, initial, inherit

Work in progress

Example for margin

alt text

Example for padding

alt text

#I recommend to use fluent-css.json, but you can manually overwrite the settings like this.

Customize output folder (from you project root)

npm run build -- --output='./css'

Start sass watch (not active by default)

npm run build -- --watch

Or just start watching (with all paramters e.g. --gzip)

npm run watch

Deactivate sourcemaps default is true

npm run build -- --sourcemaps=false

Deactivate compression

npm run build -- --compress=false

Build with gzip

npm run build -- --gzip

Or start gzipping (with all paramters e.g. --package)

npm run gzip -- --clean=false

Change output filename

npm run build -- --filename=main.css

npm run build -- --filename=main.scss

npm run build -- --filename=main

adding .css will only create css files. Adding .scss will only create scss files, filename without ending will create both, scss and css files.

Too much? Limit to the packages you need

npm run build -- --packages='display, position'

Deactivate clean

npm run build -- --clean=false

Or just clean up

npm run clean

Combine them!

npm run build -- --gzip --compress=false --souremap=false --ouput=./css filename=main