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

effortless-css

v0.10.2

Published

A collection of frequently used {Less} CSS mixins

Downloads

17

Readme

effortless-css

npm version npm downloads
License
NPM

A collection of frequently used {Less} CSS mixins

How to Use

Install effortless-css from NPM

npm install effortless-css --save-dev

Currently, there's only one way to use effortless-css: reference the provided Less file into a stylesheet.

It could be as simple as

@import '../../node_modules/effortless-css/less/all.less';

Available mixins

Colors

.background-gradient-two-color-top

Creates a vertical gradient from top to bottom.

Accepts: @top (defaulting to #fff) and @bottom (defaulting to #000) for gradient colors and optionally @fallback for browsers that do not support gradients. When not provided with @fallback, @top is used

.background-gradient-two-color-left

Creates a horizontal gradient from left to right.

Accepts: @left (defaulting to #fff) and @right (defaulting to #000) for gradient colors and optionally @fallback for browsers that do not support gradients. When not provided with @fallback, @left is used

.opacity

Makes an element transparent (as opposed to the name).

Accepts: @alpha (defaulting to 1)

Shape

.box-sizing

Sets the box-sizing of an element.

Accepts: @sizing (defaulting to border-box)

.round-borders

Makes the corners of an element rounded.

Accepts: @radius (defaulting to 50%)

Transforms

.transform

Sets a transform to an element.

Accepts: @transform (defaulting to rotate(0deg))

.transform-origin

Sets the transform origin of an element.

Accepts: @origin (defaulting to 50% 50%)

.transform-style

Sets the transform style of an element.

Accepts: @style (defaulting to preserve-3d)

.perspective

Sets the transform perspective.

Accepts: @perspective (defaulting to 500)

Misc

.multiple-columns

Makes an element host multiple columns.

Accepts: @count (defaulting to 2)

.transition

Sets transition to properties of an element.

Accepts: Duration, property or any number of properties

Note: If passing multiple arguments, end the last one with a ; so that the generated CSS is as expected. Otherwise, all the arguments in the output will be separated by a space instead of a comma.

.animation

Sets animation to an element.

Accepts: @props

.filter

Sets a filter to an element.

Accepts: @prop (defaulting to none)

To-do

  • Include more mixins if possible