Socket
Socket
Sign inDemoInstall

instyll

Package Overview
Dependencies
0
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    instyll

Instill your stylus with super powers 🎨✨📈


Version published
Weekly downloads
8
increased by700%
Maintainers
1
Install size
2.45 kB
Created
Weekly downloads
 

Readme

Source

Instyll

Instill your stylus with super powers 🎨✨📈

A collection of mixins to make your Stylus trend upwards!

Install

npm install --save instyll

Then use it wherever you use stylus:

const instyll = require('instyll');

function compile(str, path) {
  return stylus(str)
    .set('filename', path)
    .use(instyll());
}

Mixins

tween(properties, timing, easing)

An alias for transition, but with better defaults and semantics (IMO). All arguments are optional. Defaults are:

properties = all
timing = 0.8s
easing = cubic-bezier(0, 0, 0.25, 1)

Example:

.button
  background green
  tween()

  &:hover
    background red

.box
  position absolute
  top 0
  left 0
  transform translateX(0px)
  tween transform

  &:hover
    transform translateX(200px)

.boxFadeTwoSecondEase
  position absolute
  top 0
  left 0
  transform translateX(0px)
  opacity 1
  tween transform opacity, 2s, ease

  &:hover
    transform translateX(200px)
    opacity 0
uninteractive()

Completely disable an element. Useful for disabling form fields and UI controls.

Example:

.disabled
  uninteractive()

FAQs

Last updated on 31 Jan 2017

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc