Difference between revisions of "Popular syntax"

From rbachwiki
Jump to navigation Jump to search
Line 14: Line 14:
  }
  }
== Text Shadow ==
== Text Shadow ==
@include text-shadow(black 0 0 20px);
@include text-shadow(black 0 0 20px);


== Background Linear Gradient ==
@include background-image(linear-gradient($navcolor1, $navcolor2));
----
----
==[[#top|Back To Top]]-[[Main_Page| Home]] - [[Css|Category]]==
==[[#top|Back To Top]]-[[Main_Page| Home]] - [[Css|Category]]==

Revision as of 18:54, 16 September 2016

Border Radius

@include border-radius(12px);

Clearfix

@include clearfix

Breakpoint using juice

@include bp(small)

open the juice file, they have a bunch of presets

Juice Center an element vertically and horizontally

.element {
 @include centerer;
}

Text Shadow

@include text-shadow(black 0 0 20px);

Background Linear Gradient

@include background-image(linear-gradient($navcolor1, $navcolor2));

Back To Top- Home - Category