Please refer to the css section of this codepen:
http://codepen.io/anon/pen/JddzEJ
it has a bunch of sass code.
I am trying to run that on my local machine. I install sass and compass using gem.
After that I ran the following command on the terminal:
sass --watch slider.scss:slider.css
Now this is the error that it reports:
error slider.scss (Line 156: Undefined operation: "1.27273em times 1cos(115.71429deg)".)
I do not want to copy and paste the entire 200 line scss file hence I am pasting the section where the error appears:
@for $i from 0 through $tip-cp-n {
$ang-curr: $tip-bubble-ang-ref + $i*$tip-cp-ang-base;
@if $ang-curr >= $tip-bubble-ang-s and $ang-curr <= $tip-bubble-ang-e {
$x: $tip-bubble-rx*(1 + cos($ang-curr)); <-- line 156
$y: $tip-bubble-ry*(1 + sin($ang-curr));
$tip-cp: $tip-cp, $x $y !global;
}
}
I there some other addon that I require here ?