/// Global width of your site. Used by the grid to determine row width. /// @type Number $global-width: rem-calc(1200) !default; /// Font size attribute applied to `` and ``. We use 100% by default so the value is inherited from the user's browser settings. /// @type Number $global-font-size: 16px !default; /// Namespace for the data attributes used to initialize Foundation plugins. /// @type String | Boolean $global-namespace: false !default; /// Sets the text direction of the CSS. Can be either `ltr` or `rtl`. $global-text-direction: ltr !default; // Internal variables used for text direction $global-left: if($global-text-direction == rtl, right, left); $global-right: if($global-text-direction == rtl, left, right);