CSS Crush for WordPress

from 0$

CSS Crush for WordPress is a WP Plugin Package from the Open Source WP Plugins range CSS allows you to do lots of things, but some features are missing to developers.…


For more information about a tailored WP Plugin Package like CSS Crush for WordPress please contact us directly.

CSS allows you to do lots of things, but some features are missing to developers. What about variables, constants, and general faster syntax? Normal CSS can not do that, that is why you have preprocessors, like CSS Crush.

CSS Crush for WordPress allows the use of variables in CSS files.

This plugin will automaticly process all your theme’s stylesheets for you! No configuration needed. However, you can customize it from the Settings page.

By default your stylesheet will be minified, cached and have it’s vendor prefixes automatically generated.

examples of generated prefixes

/* Before */
div { background: red linear-gradient( left, red, white ); }

/* After */
div {
  background: red -webkit-linear-gradient( left, red, white );
  background: red -moz-linear-gradient( left, red, white );
  background: red -o-linear-gradient( left, red, white );
  background: red linear-gradient( left, red, white );
}

example with the use of variables

/* Defining variables */
@define {
    brand-blue: #C1D9F5;    
    helvetica: "Helvetica Neue", Helvetica, Arial, sans-serif;  
}

ul, p {
    font-family: $( helvetica );
    color: $( brand-blue );
}

More Features

  • Declare variables in your CSS
  • Direct @import
  • A small collection of custom math functions are built-in
  • Block nesting
  • The experimental :any pseudo class is supported

Current CSS Crush version: 1.6.1

For a full list of features please visit http://the-echoplex.net/csscrush/.

Related Links:

  • http://www.codepress.nl/plugins/

Translations

If you like to contribute a language, please send them to info@codepress.nl.

Download & install the zip archive

The plugin package installer can be downloaded from the WP2E project tab called “code”.

1 – Select the version to download if this option is available otherwise the “latest” version of the main plugin will be used.

2 – After downloading the zip archive install the plugin package installer in you local environment and activate the script from the plugin list.

3 – Under the section “Plugins” of the admin dashboard you should see a new “Dependencies & Licenses” link. Follow the instructions from this panel to finalize the installation of the missing dependencies.

Tips: Use the WP2E panel to add/suggest new dependencies to the local installation. Press F5 in the list of dependencies if the changes are not displayed right away.

CSS Crush for WordPress

typePlugin
versionlatest
descriptionCSS allows you to do lots of things, but some features are missing to developers.…