Skip to content

Instantly share code, notes, and snippets.

@ReneKriest
Created September 28, 2015 15:37
Show Gist options
  • Save ReneKriest/f3bb225cdf60e63801e6 to your computer and use it in GitHub Desktop.
Save ReneKriest/f3bb225cdf60e63801e6 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.14)
// Compass (v1.0.3)
// ----
@for $i from 1 through 2 {
[data-icon="name_#{$i}"] {
display: none;
}
}
.dose {
display: none;
&.pending {
&, .wrap {
color: #123;
}
}
}
@mixin border-radius($radius) {
-webkit-border-radius: $radius;
-moz-border-radius: $radius;
-ms-border-radius: $radius;
border-radius: $radius;
}
.box { @include border-radius(10px); }
[data-icon="name_1"] {
display: none;
}
[data-icon="name_2"] {
display: none;
}
.dose {
display: none;
}
.dose.pending, .dose.pending .wrap {
color: #123;
}
.box {
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-ms-border-radius: 10px;
border-radius: 10px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment