Use the following CSS code to add a style to odd or even div elements or entries: .row{ &:nth-child(odd){ background-color: darken($grey,3%); } &:nth-child(even){ Read More
If a title or text within a H1 or H2 tag is too large and to prevent the text from wrapping or breaking a column use the following bit of code which will embed (...) instead of Read More
The following way is an easy SCSS for loop that will generate child classes to delay animations of divs with the same class. .service{ position: relative; padding: $padding_l 0px; Read More
Mixins are one awesome little tool you can use in SCSS, to pull in code that could be commonly used in a variety of locations. Mixins do act like mini CSS functions. This is a Read More