Skip to content

Instantly share code, notes, and snippets.

@davidsword
Created September 14, 2016 20:52
Show Gist options
  • Save davidsword/c62651e91f85a978cbafce092a964364 to your computer and use it in GitHub Desktop.
Save davidsword/c62651e91f85a978cbafce092a964364 to your computer and use it in GitHub Desktop.
<?
require "lessc.inc.php";
$less = new lessc;
$less->compileFile("style.less", "style.css");
?>
<style>code { animation: fadein 2s }
@keyframes fadein { from { opacity:0 } to { opacity:1 } }</style>
<code>Compiled: <?= date('r') ?></code>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment