Skip to content

Instantly share code, notes, and snippets.

@adamwathan
Created November 2, 2014 14:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adamwathan/36f29132a62ec2284a88 to your computer and use it in GitHub Desktop.
Save adamwathan/36f29132a62ec2284a88 to your computer and use it in GitHub Desktop.
BEM-ish nesting in Less
.episode {
margin-bottom: 5em;
&-header {
&-title {
margin-top: 0;
margin-bottom: (@line-height-computed / 4);
font-size: @font-size-h4;
}
&-meta {
margin-top: 0;
font-size: @font-size-base;
font-weight: 500;
color: @gray-lighter;
}
}
&-audio {
&-player {
width: 100%;
}
}
&-links {
&-heading {
font-size: @font-size-large;
margin-top: 0;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment