Skip to content

Instantly share code, notes, and snippets.

@davidpett
Created April 24, 2014 15:38
Show Gist options
  • Save davidpett/11259187 to your computer and use it in GitHub Desktop.
Save davidpett/11259187 to your computer and use it in GitHub Desktop.
typography.scss
%headerPrimary {
font-size: 48px;
font-weight: 200;
line-height: 1;
margin-bottom: 0.25em;
@include responsive('lap') {
font-size: 60px;
}
@include responsive('desk') {
font-size: 70px;
margin-bottom: 5em;
}
}
.somewhere .title {
@extend %headerPrimary;
color: #ff0000;
}
// or
@mixin headerPrimary {
font-size: 48px;
font-weight: 200;
line-height: 1;
margin-bottom: 0.25em;
@include responsive('lap') {
font-size: 60px;
}
@include responsive('desk') {
font-size: 70px;
margin-bottom: 5em;
}
@content;
}
.somewhere .better-title {
@include headerPrimary {
color: #ffcc00;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment