stylesheets/_functions.scss in rapido-css-0.1.4 vs stylesheets/_functions.scss in rapido-css-0.1.5
- old
+ new
@@ -2,11 +2,11 @@
Functions
For 99% of the framework I used Compass' and Susy's functions but I've made some for covering edge cases.
-Styleguide 24
+Styleguide 25
*/
/*
@@ -17,11 +17,11 @@
* **Base**: linear, ease, ease-in, ease-out, ease-in-out
* **easeIn**: easeInQuad, easeInCubic, easeInQuart, easeInQuint, easeInSine, easeInExpo, easeInCirc, easeInBack
* **easeOut**: easeOutQuad, easeOutCubic, easeOutQuart, easeOutQuint, easeOutSine, easeOutExpo, easeOutCirc, easeOutBack
* **easeInOut**: easeInOutQuad, easeInOutCubic, easeInOutQuart, easeInOutQuint, easeInOutSine, easeInOutExpo, easeInOutCirc, easeInOutBack
-Styleguide 20.2
+Styleguide 21.2
*/
@function toBezier($easing) {
@@ -74,11 +74,11 @@
Become:
left: -10em
-Styleguide 24.2
+Styleguide 25.2
*/
@function neg($n) {
@return (0 - $n);
@@ -97,11 +97,11 @@
Become:
margin-left: -1.42857em;
-Styleguide 24.3
+Styleguide 25.3
*/
@function rhythm_neg($i: 1) {
@return -(rhythm($i));
@@ -113,11 +113,11 @@
space_neg()
Similar to `rhythm_neg()` but for Susy's `space()` function, more info:
[Susy Reference](http://susy.oddbird.net/guides/reference/#ref-space).
-Styleguide 24.4
+Styleguide 25.4
*/
@function space_neg($w: 1, $c: 12) {
@return -(space($w, $c));
@@ -128,10 +128,10 @@
strip_units()
Remove eny type of unit from a number, more info:
[StackOverflow](http://stackoverflow.com/questions/12328259/how-do-you-strip-the-unit-from-any-number-in-sass).
-Styleguide 24.5
+Styleguide 25.5
*/
@function strip_units($number) {