Skip to content

Instantly share code, notes, and snippets.

@tjbenton
Last active August 29, 2015 14:25
Show Gist options
  • Save tjbenton/24b98652496440794de6 to your computer and use it in GitHub Desktop.
Save tjbenton/24b98652496440794de6 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div class="no-js">
<ul class="c-cards c-cards--rounded">
<li class="c-cards__card"></li>
<li class="c-cards__card"></li>
<li class="c-cards__card"></li>
</ul>
</div>
// ----
// Sass (v3.4.14)
// Compass (v1.0.3)
// ----
%keyframes{
&--pulse{
@keyframes pulse{
0%{
left: 0;
}
100%{
left: 100%;
}
}
}
}
// If you uncomment below, it throws an error
// .u-animation--pulse{
// @extend %u-animation--pulse;
// }
@keyframes pulse {
0% {
left: 0;
}
100% {
left: 100%;
}
}
<div class="no-js">
<ul class="c-cards c-cards--rounded">
<li class="c-cards__card"></li>
<li class="c-cards__card"></li>
<li class="c-cards__card"></li>
</ul>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment