Skip to content

Latest commit

 

History

History
37 lines (21 loc) · 967 Bytes

README.md

File metadata and controls

37 lines (21 loc) · 967 Bytes

CSS Crush

CSS Crush is an extensible PHP based CSS preprocessor that aims to alleviate many of the hacks and workarounds necessary in modern CSS development.

Overview

http://the-echoplex.net/csscrush

Quick start

<?php

require_once 'CssCrush/CssCrush.php';
$global_css = csscrush_file( '/css/global.css' );

?>

<link rel="stylesheet" href="<?php echo $global_css; ?>" media="all" />

Submitting bugs

If you think you've found a bug, please visit the Issue tracker — https://github.com/peteboere/css-crush/issues — and create an issue explaining the problem and expected result.

Submitting patches

To contribute code and bug fixes fork this project on Github, make changes to the code in your fork, and then send a "pull request" to be reviewed for inclusion.