Skip to content

Instantly share code, notes, and snippets.

@matbrady
Created March 12, 2014 21:55
Show Gist options
  • Save matbrady/9517274 to your computer and use it in GitHub Desktop.
Save matbrady/9517274 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.1)
// Compass (v1.0.0.alpha.18)
// ----
/*---------------------------------*\
Tabs
\*---------------------------------*/
// Option 1 - nested
.tabs {
background-color: blue;
> div {
display: none
}
//
// END Required
//
background-color: red;
> div {
width: 300px;
}
}
// Option 2 - seperate
.tabs2 {
background-color: blue;
> div {
display: none
}
}
//
// END Required
//
.tabs2 {
background-color: red;
> div {
width: 300px;
}
}
/*---------------------------------*\
Tabs
\*---------------------------------*/
.tabs {
background-color: blue;
background-color: red;
}
.tabs > div {
display: none;
}
.tabs > div {
width: 300px;
}
.tabs2 {
background-color: blue;
}
.tabs2 > div {
display: none;
}
.tabs2 {
background-color: red;
}
.tabs2 > div {
width: 300px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment