Skip to content

Instantly share code, notes, and snippets.

@sdempsey
Created February 15, 2016 20:36
Show Gist options
  • Save sdempsey/44e5ba09aa21489a3388 to your computer and use it in GitHub Desktop.
Save sdempsey/44e5ba09aa21489a3388 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
$alignments: left, right, center;
.large-hero {
color: white;
&-content {
bottom: 1.5rem;
position: absolute;
@each $alignment in $alignments {
.#{$alignment} & {
@if ($alignment != center) {
#{$alignment}: 1.5rem;
}
text-align: #{$alignment};
}
}
}
}
.large-hero {
color: white;
}
.large-hero-content {
bottom: 1.5rem;
position: absolute;
}
.left .large-hero-content {
left: 1.5rem;
text-align: left;
}
.right .large-hero-content {
right: 1.5rem;
text-align: right;
}
.center .large-hero-content {
text-align: center;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment