All Projects → middleman → Middleman Autoprefixer

middleman / Middleman Autoprefixer

Autoprefixer integration with Middleman

Programming Languages

ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to Middleman Autoprefixer

middleman starter kit
Middleman front-end starter kit
Stars: ✭ 19 (-83.33%)
Mutual labels:  middleman, autoprefixer
Middleman Template
The base Middleman application used at thoughtbot, ready to deploy to Netlify.
Stars: ✭ 80 (-29.82%)
Mutual labels:  middleman
Gulp Autoprefixer
Prefix CSS
Stars: ✭ 676 (+492.98%)
Mutual labels:  autoprefixer
Awesome Docs With Static Site Generators
Pointers to all templates and implementations based on static site generators
Stars: ✭ 44 (-61.4%)
Mutual labels:  middleman
Bh
Bootstrap Helpers for Ruby
Stars: ✭ 834 (+631.58%)
Mutual labels:  middleman
Middleman Search
LunrJS-based search for Middleman
Stars: ✭ 57 (-50%)
Mutual labels:  middleman
Inline Style Prefixer
Autoprefixer for JavaScript style objects
Stars: ✭ 379 (+232.46%)
Mutual labels:  autoprefixer
Middleman Zurb Foundation
Middleman Skeleton For Zurb Foundation
Stars: ✭ 97 (-14.91%)
Mutual labels:  middleman
Shouldiprefix
A quick overview of what CSS features to prefix
Stars: ✭ 79 (-30.7%)
Mutual labels:  autoprefixer
My Raspberry Pi Site
Middleman-based site for my RaspberryPi
Stars: ✭ 41 (-64.04%)
Mutual labels:  middleman
Middleman Zurb Template
Middleman blog template containing ZURB Foundation and sensible default components and templates
Stars: ✭ 29 (-74.56%)
Mutual labels:  middleman
Stencil Postcss
Autoprefixer plugin for Stencil
Stars: ✭ 19 (-83.33%)
Mutual labels:  autoprefixer
Webpack Es6 Sass Setup
A basic setup for Webpack with ES6, Babel, Sass and stylelint
Stars: ✭ 63 (-44.74%)
Mutual labels:  autoprefixer
Turretcss
Turret is a styles and browser behaviour normalisation framework for rapid development of responsive and accessible websites.
Stars: ✭ 729 (+539.47%)
Mutual labels:  autoprefixer
Bottle Vue Kickstart
🍕 Very basic Bottle kickstart kit with Vue.js and Webpack. Included Axios, Autoprefixer, Babel, Webpack config, demo app with Bulma and Web font loader.
Stars: ✭ 83 (-27.19%)
Mutual labels:  autoprefixer
Long Haul
A minimal, type-focused Jekyll theme.
Stars: ✭ 524 (+359.65%)
Mutual labels:  autoprefixer
Middleman
Hand-crafted frontend development
Stars: ✭ 6,812 (+5875.44%)
Mutual labels:  middleman
Middleman Thumbnailer
Thumbnailer for middleman
Stars: ✭ 52 (-54.39%)
Mutual labels:  middleman
Fabium
+100 for productivity
Stars: ✭ 108 (-5.26%)
Mutual labels:  autoprefixer
Middleman Google Analytics
📈 A @middleman plugin to handle generating your Google Analytics tracking code.
Stars: ✭ 91 (-20.18%)
Mutual labels:  middleman

Gem version Build status Coveralls Dependency status

Middleman::Autoprefixer

Automatically vendor-prefix stylesheets served by Middleman.

Usage

Add the following line to Gemfile, then run bundle install:

gem 'middleman-autoprefixer'

After installation, activate (and optionally configure) the extension in config.rb:

activate :autoprefixer
activate :autoprefixer do |config|
  config.browsers = ['last 2 versions', 'Explorer >= 9']
  config.ignore   = ['/stylesheets/hacks.css']
end

Available options

browsers

The list of targeted browsers. Takes values and uses defaults accordingly to Autoprefixer’s documentation.

add

Whether to add vendor prefixes: true or false. Enabled by default.

remove

Whether to remove outdated prefixes: true or false. Enabled by default.

cascade

The visual cascade of prefixed properties: true or false. Enabled by default.

inline

Whether to process inline styles within HTML files: true or false. Disabled by default.

ignore

The array of patterns or paths to exclude from processing. Empty by default.

License

Middleman Autoprefixer was created by Dominik Porada and is distributed under the MIT license.

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].