Created
October 15, 2010 17:54
-
-
Save neonstalwart/628636 to your computer and use it in GitHub Desktop.
testing less importing
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
/* empty */ |
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
<!DOCTYPE html> | |
<html lang="en-us"> | |
<head> | |
<meta charset="utf-8" /> | |
<title>less test Page</title> | |
<link rel="stylesheet/less" href="test.less" type="text/css"> | |
<script type="text/javascript"> | |
less = window.less || {}; | |
less.env = 'development'; | |
</script> | |
<script type="text/javascript" src="less-1.0.44.js"></script> | |
</head> | |
<body> | |
<h1>if there is no error above - less is working</h1> | |
</body> | |
</html> |
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
@import url('imported.less'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment