Created
March 16, 2013 21:08
-
-
Save sohelrana820/5178339 to your computer and use it in GitHub Desktop.
LESS CSS Practice
This file contains 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> | |
<head> | |
<title>LESS Practice</title> | |
<link rel="stylesheet/less" type="text/css" href="styles.less" /> | |
<script src="less.js" type="text/javascript"></script> | |
</head> | |
<body> | |
<h2 class="h2">Hello World</h2> | |
</body> | |
</html> |
This file contains 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
@color : red; | |
.h2{ | |
color: @color | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment