Created
September 28, 2015 15:37
-
-
Save ReneKriest/f3bb225cdf60e63801e6 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// 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); } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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