Skip to content

Instantly share code, notes, and snippets.

@Loque-
Last active September 2, 2015 10:44
Show Gist options
  • Save Loque-/1da3be42b9ad1a2fb14a to your computer and use it in GitHub Desktop.
Save Loque-/1da3be42b9ad1a2fb14a to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
// using modernizr and @root
.page-navigation {
.branding {
background: green;
// If you do have flexbox
html:not(.no-flexbox) & {
background: hotpink;
}
// or ... (relies on modernizr [and will require JS to load before seing styles])
html.flexbox & {
background: hotpink;
}
// if you don't have flexbox (relies on modernizr [and will require JS to load before seing styles])
html.no-flexbox & {
background: lime;
}
}
}
.page-navigation .branding {
background: green;
}
html:not(.no-flexbox) .page-navigation .branding {
background: hotpink;
}
html.flexbox .page-navigation .branding {
background: hotpink;
}
html.no-flexbox .page-navigation .branding {
background: lime;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment