Skip to content

Instantly share code, notes, and snippets.

@impressivewebs
Created March 9, 2014 02:47
Show Gist options
  • Save impressivewebs/9442230 to your computer and use it in GitHub Desktop.
Save impressivewebs/9442230 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.5)
// Compass (v1.0.0.alpha.18)
// ----
.step__item {
counter-increment: steps; /* 1 */
background: $step-background-color;
float: left;
padding: $step-baseline 0;
position: relative;
border-top: $step-border;
border-bottom: $step-border;
white-space: nowrap;
&:after {
@include size($step-arrow-size);
@include absolute(top .3em left 100%);
@include transform(rotate(45deg));
content: '';
z-index: 2;
background: inherit;
border-right: $step-border;
border-top: $step-border;
margin-left: -$step-arrow-size/2;
}
&[disabled] {
cursor: not-allowed;
}
@media (max-width: 767px) {
width: 100% !important;
border-left: $step-border;
border-right: $step-border;
padding: $step-baseline*2 0;
&:after {
content: none;
}
}
}
Undefined variable: "$step-background-color".
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment