Created
March 9, 2014 02:47
-
-
Save impressivewebs/9442230 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or 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.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; | |
} | |
} | |
} |
This file contains hidden or 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
Undefined variable: "$step-background-color". |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment