PHP Classes

File: public/asset/vendor/select2/docs/themes/learn2/scss/vendor/bourbon/functions/_grid-width.scss

Recommend this page to a friend!
  Classes of fathurrahman   mnTemplate   public/asset/vendor/select2/docs/themes/learn2/scss/vendor/bourbon/functions/_grid-width.scss   Download  
File: public/asset/vendor/select2/docs/themes/learn2/scss/vendor/bourbon/functions/_grid-width.scss
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: mnTemplate
Route HTTP requests to callback functions
Author: By
Last change:
Date: 1 year ago
Size: 418 bytes
 

Contents

Class file image Download
@function grid-width($n) { @return $n * $gw-column + ($n - 1) * $gw-gutter; } // The $gw-column and $gw-gutter variables must be defined in your base stylesheet to properly use the grid-width function. // // $gw-column: 100px; // Column Width // $gw-gutter: 40px; // Gutter Width // // div { // width: grid-width(4); // returns 520px; // margin-left: $gw-gutter; // returns 40px; // }