Skip to content

Instantly share code, notes, and snippets.

@colincalnan
Created January 29, 2014 19:38
Show Gist options
  • Save colincalnan/8695331 to your computer and use it in GitHub Desktop.
Save colincalnan/8695331 to your computer and use it in GitHub Desktop.
Indenting (transforming) tabs in Foundation. 4 of them minus the first one.
$transform: 0px;
@for $i from 2 through 5 {
.section-container.auto > section:nth-of-type(#{$i}) > .title {
$transform: $transform + 4;
transform:translate($transform,0);
-ms-transform:translate($transform,0); /* IE 9 */
-webkit-transform:translate($transform,0); /* Safari and Chrome */
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment