/* ==========================================================================
   Abstracts
   ========================================================================== */
/* ==========================================================================
   Abstracts
   ========================================================================== */
/* ==========================================================================
// Outputs converted to rem value

// Use
//	font-size: pxrem( 20 );
//	line-height: pxrem( 32 );

// Vars
//	$num: the number you want to convert and output in rem
============================================================================= */
/* ==========================================================================
// Output correct font-weight property based on passed string

// Use
//	font-weight: weight( bold );

// Vars
//	$weight: matches the string and outputs the value matching the weight
========================================================================== */
/* ==========================================================================
// Output font-family property based on passed font name

// Use
//	font-family: fontfam("Open Sans");

// Vars
//	$font-name: font that's gonna be used in the browser
============================================================================= */
/* ==========================================================================
	Use
		@function is-set( $var, 10px, 0px )

	Vars
		$var: the variable you want to check
		$true-output: the value you want to set if the variable you check IS NOT ''
		$false-output: the value you want to set if the variable IS ''
	========================================================================== */
/* ==========================================================================
	Use
		@function ltr_rtl( 10px, -10px )

	Vars
		$ltr-output: the value you want to output if text direction is ltr
		$rtl-output: the value you want to output if text direction is rtl
	========================================================================== */
/*
 * Output properties for font
 *
 * Usage:
 * @include font( 20 );
 * @include font( 20, 28 );
 * @include font( 20, 28, semibold );
 * @include font( 20, 28, semibold, "Open Sans" );
 *
 * Result ( if all properties are given ):
 * font-size: 1.25rem;
 * line-height: 1.75rem;
 * font-weight: 500;
 * font-family: "Open Sans", Arial, Helvetica, Verdana, sans-serif;
 */
/*# sourceMappingURL=main.css.map */
