Skip to content

Instantly share code, notes, and snippets.

@seven-phases-max
Created June 21, 2017 17:56
Show Gist options
  • Save seven-phases-max/102bdc26b8e58e14bcd0895b8854ad00 to your computer and use it in GitHub Desktop.
Save seven-phases-max/102bdc26b8e58e14bcd0895b8854ad00 to your computer and use it in GitHub Desktop.
foo:extend(.font-size-xxl) {}
.font-size-xxl {
@media (min-width: 768px) {
font-size: 48px;
}
@media (max-width: 767px) {
font-size: 32px;
}
@media (max-width: 479px) {
font-size: 16px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment