call
  • References/CSS/Sass/Functions

call($name, $args...) Dynamically calls a function. This can call user-defined functions, built-in functions, or plain CSS

2025-01-10 15:47:30
lighten
  • References/CSS/Sass/Functions

lighten($color, $amount) Makes a color lighter. Takes a color and a number between 0% and 100%

2025-01-10 15:47:30
Functions
  • References/CSS/Sass/SassScript

Functions SassScript defines some useful functions that are called using the normal CSS function syntax:

2025-01-10 15:47:30
selector_append
  • References/CSS/Sass/Functions

selector_append($selectors...) Return a new selector with all selectors in $selectors appended one another as

2025-01-10 15:47:30
%: placeholder selector
  • References/CSS/Sass/CSS Extensions

Placeholder Selectors: %foo Sass supports a special type of selector called a “placeholder selector”. These look like class and

2025-01-10 15:47:30
@each
  • References/CSS/Sass/@-Rules and Directives

@each The @each directive usually has the form @each $var in <list or map>. $var

2025-01-10 15:47:30
percentage
  • References/CSS/Sass/Functions

percentage($number) Converts a unitless number to a percentage.

2025-01-10 15:47:30
hsla
  • References/CSS/Sass/Functions

hsla($hue, $saturation, $lightness, $alpha) Creates a Color from hue, saturation, lightness

2025-01-10 15:47:30
join
  • References/CSS/Sass/Functions

join($list1, $list2, $separator:auto) Joins together two lists into one. Unless $separator

2025-01-10 15:47:30
if
  • References/CSS/Sass/Functions

if($condition, $if-true, $if-false) Returns one of two values, depending on whether or not $condition is true

2025-01-10 15:47:30