All Projects → nusu → family.styl

nusu / family.styl

Licence: other
port of family.scss to stylus

Programming Languages

CSS
56736 projects

Projects that are alternatives of or similar to family.styl

go-traits
A concept package that helps implement mixin behavior using embedded structs and hook interfaces.
Stars: ✭ 21 (+10.53%)
Mutual labels:  mixins
chameleon-sdk
Chameleon Software Development Kit
Stars: ✭ 12 (-36.84%)
Mutual labels:  mixins
buttono
A flexible Sass mixin for creating BEM-style buttons.
Stars: ✭ 82 (+331.58%)
Mutual labels:  mixins
sass-boilerplate
A collection of common use Sass stylesheets, mixins and functions.
Stars: ✭ 60 (+215.79%)
Mutual labels:  mixins
rainbowify
Fabric mod for rainbow and blur backgrounds in minecraft guis
Stars: ✭ 18 (-5.26%)
Mutual labels:  mixins
loopback-row-count-mixin
A loopback mixin to get total count of a model
Stars: ✭ 13 (-31.58%)
Mutual labels:  mixins
Grimoire-legacy
General-purpose Mixin loader framework, which allows to properly implement mixins on 1.7.10/1.12.2 versions of Minecraft. For updated version check out https://github.com/Aizistral-Studios/Grimoire
Stars: ✭ 27 (+42.11%)
Mutual labels:  mixins
Orion
Mixin loader for Paper
Stars: ✭ 46 (+142.11%)
Mutual labels:  mixins
Cometary
Roslyn extensions, with a touch of meta-programming.
Stars: ✭ 31 (+63.16%)
Mutual labels:  mixins
extjs-reactjs-examples
Code examples for ExtJS to React transition
Stars: ✭ 48 (+152.63%)
Mutual labels:  mixins
rupture-sass
Better media queries mixins library for SASS
Stars: ✭ 47 (+147.37%)
Mutual labels:  mixins
less-mix
LESS-Mix - is a functional, powerful and convenient library LESS-mixins.
Stars: ✭ 22 (+15.79%)
Mutual labels:  mixins
manila-mixins
A bunch of really cool Sass Mixins
Stars: ✭ 15 (-21.05%)
Mutual labels:  mixins
Sledgehammer
Smashes the stupid out of the client & server.
Stars: ✭ 13 (-31.58%)
Mutual labels:  mixins
orchparty
Write your own orchestration config with a Ruby DSL that allows you to have mixins, imports and variables.
Stars: ✭ 37 (+94.74%)
Mutual labels:  mixins
NCop
Composite-aspect oriented framework for .NET
Stars: ✭ 30 (+57.89%)
Mutual labels:  mixins
typescript-mix
A tweaked implementation of TypeScript's default applyMixins(...) idea using ES7 decorators
Stars: ✭ 81 (+326.32%)
Mutual labels:  mixins
Mixin
React.js like Mixin. More powerful Protocol-Oriented Programming.
Stars: ✭ 45 (+136.84%)
Mutual labels:  mixins
hagrid
📏 Hagrid is a mixin library for responsive websites and web applications.
Stars: ✭ 30 (+57.89%)
Mutual labels:  mixins
ekzo
💫 Functional Sass framework for rapid and painless development
Stars: ✭ 32 (+68.42%)
Mutual labels:  mixins

family.styl

this is port of family.scss to stylus

Installation:

bower:

$ bower install family.styl

git:

$ git clone https://github.com/nusususuzu/family.styl.git

and import the mixin file:

@import 'family.styl'

Use the mixins:

mixin name's are same as family.scss , mixins are namespaced with "fm-" which comes from "family", so if you want to use mixins in stylus you need to put "fm-" before every family mixin name

Input:

ul li
  background transparent
  +fm-first(3)
    background pink

Output:

ul li {
  background: transparent;
}
ul li:nth-child(-n + 3) {
  background: pink;
}

detailed mixin documentation: family.scss

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].