Created
September 14, 2016 20:52
-
-
Save davidsword/c62651e91f85a978cbafce092a964364 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
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