Outputs CSS variables from the color theme maps for rows, and cards and buttons in rows. Used in the _theme-colors.scss file to output CSS variables for each theme class.
syntax: color-theme(rowThemeName, cardThemeName, buttonThemeName)
Usage example
Returns breakpoint media query using values from the $breakpoints variable map or a custom value.
syntax: @include breakpoint(breakpointName or custom value, minWidthOrMax:min) Usage examples:
Returns a calculation using viewport width. Can be used for any style that uses a number (e.g., font-size, width, etc). Somewhat hit-or-miss but can be tweaked to work as intended.
p {
@include fluid("padding-right", 10, 150);
}
outputs:
p {
padding-right: calc(16.9697vw + -53.63636px);
}
Outputs a stylized right arrow as seen in the Events row.
syntax: @include rightarrow(color, padding, pointWidth, pointHeight, lineWidth, lineBorderSize)