blob: c176c768a539e8615c9e4d72bd30c68292f49ac8 [file] [log] [blame]
<?php
header("Access-Control-Allow-Origin: *");
$name = 'green-background.css';
$fp = fopen($name, 'rb');
header("Content-Type: text/css");
header("Content-Length: " . filesize($name));
fpassthru($fp);
exit;
?>