Skip to content

Instantly share code, notes, and snippets.

@ryandejaegher
Last active January 3, 2021 17:00
Show Gist options
  • Select an option

  • Save ryandejaegher/51092807f70ffb566b30bd81147b67d7 to your computer and use it in GitHub Desktop.

Select an option

Save ryandejaegher/51092807f70ffb566b30bd81147b67d7 to your computer and use it in GitHub Desktop.
LESS Demo
{
"scripts": [
"https://cdnjs.cloudflare.com/ajax/libs/gsap/3.5.1/TextPlugin.min.js"
],
"styles": []
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div id="page-id-2">
<div>Yo</div>
</div>
<div id="page-id-3">
<div></div>
</div>
</body>
</html>
.demo(@id, @color) {
#page-id-@{id} {
background: @color;
width: 200px;
height: 200px;
}
}
.cool() {
background: red;
border-radius: 100px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment