Skip to content

Instantly share code, notes, and snippets.

@eiriksm
Created November 2, 2014 15:23
Show Gist options
  • Save eiriksm/1e8ff37c8c0e8641f1e7 to your computer and use it in GitHub Desktop.
Save eiriksm/1e8ff37c8c0e8641f1e7 to your computer and use it in GitHub Desktop.
First style hack
<?php
print '<style>';
$style = ''
foreach ($css as $c) {
// Do some checking of some media query stuff.
// ...
// Then store the raw CSS.
$style .= file_get_contents($c['data']);
}
//do some regex to remove some stuff, and remove whitespace.
print $style . '</style>';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment