Skip to content

Instantly share code, notes, and snippets.

@hovatterz
Created May 3, 2012 20:52
Show Gist options
  • Save hovatterz/2589260 to your computer and use it in GitHub Desktop.
Save hovatterz/2589260 to your computer and use it in GitHub Desktop.
Testing LESS stuff
/* Import */
body {
background: #000;
color: #fff;
font: 100% Helvetica, Arial, sans-serif;
}
.container {
width: 940px;
}
.first,
.second {
background: orange;
}
.first {
color: red;
}
.second {
color: green;
}
body {
color: #f00;
font-size: 13px;
}
.container {
color: pink;
width: 960px;
}
.first {
color: #000;
background: red;
}
/* Extend */
body {
background:#000;
color: #f00;
font: 13px Helvetica, Arial, sans-serif;
}
.container {
color: pink;
width:960px;
}
.first, .second {
background: orange;
}
.first {
color: #000;
background: red;
}
.second {
color: green;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment