mirror of
https://github.com/YunoHost/doc.git
synced 2024-09-03 20:06:26 +02:00
7b447ac5ae
Creating the pages hierarchy for transitioning to Grav
13 lines
418 B
SCSS
13 lines
418 B
SCSS
@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;
|
|
// }
|