ft-interactive/o-grid

Name: o-grid

Owner: FT Interactive News

Description: Responsive grid system

Forked from: Financial-Times/o-grid

Created: 2016-10-18 10:32:00.0

Updated: 2016-10-18 10:32:01.0

Pushed: 2016-10-31 17:46:36.0

Homepage: http://registry.origami.ft.com/components/o-grid

Size: 2844

Language: CSS

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

o-grid Build Status

A 12 column responsive, flexbox-based grid system for laying out documents, templates and modules.

Living off the grid and being kind of an outlaw brings a dangerous reality. Ron Perlman

Grid system

Quick Start

Using the Origami Build Service:

d>
?
<link rel="stylesheet"
      href="https://origami-build.ft.com/v2/bundles/css?modules=o-grid@^4.0.0" />
ad>

Or, to install it manually:

r install o-grid --save
css
our-app/main.scss
rid-is-silent: false;
ort 'o-grid/main';
s
our-app/main.js

eturn the current layout (e.g. default, S, M, L, XL)
getCurrentLayout = require('o-grid').getCurrentLayout;
ole.log(getCurrentLayout());

eturn the current gutter (e.g. 10px, 20px)
getCurrentGutter = require('o-grid').getCurrentGutter;
ole.log(getCurrentGutter());
Browser support

o-grid works in browsers that support CSS @media queries and box-sizing, as well as Internet Explorer 8.

Older browsers: you may use a box-sizing polyfill to support give better support to IE < 8.

Grid dimensions
General settings
Layout sizes
Quick start
Utility classes
 class="o-grid-container">
<div class="o-grid-row">
    <!-- two divs, spanning a total of 12 columns -->
    <div data-o-grid-colspan="8">A div, 8 columns wide</div>
    <div data-o-grid-colspan="4">Another div, 4 columns wide</div>
</div>
v>
Responsive columns

Set a number of columns per layout:

 class="o-grid-container">
<div class="o-grid-row">
    <div data-o-grid-colspan="6 L8" class="first-column">
        Half by default, then 8 columns wide on Large layout and up
    </div>
    <div data-o-grid-colspan="6 L4" class="second-column">
        Half by default, then 4 columns wide on Large layout and up
    </div>
</div>
v>
css
{
@include oGridContainer();

> div {
    @include oGridRow();
}


st-column {
// Half by default, then 8 columns wide on Large layout and up
@include oGridColspan((default: 6, L: 8));

ond-column {
// Half by default, then 4 columns wide on Large layout and up
@include oGridColspan((default: 6, L: 4));

Using numbers
 data-o-grid-colspan="6 L8"></div>
css
{ @include oGridColspan((default: 6, L: 8)); }
Using keywords
 data-o-grid-colspan="one-half Ltwo-thirds"></div>
css
{ @include oGridColspan((default: one-half, L: two-thirds)); }
Examples

A full width column for all sizes except large screens and up, where it spans on 9 columns:

 data-o-grid-colspan="full-width L9"></div>
css
{ @include oGridColspan((default: full-width, L: 9)); }

A half width column that becomes full-width on medium screens and up:

 data-o-grid-colspan="one-half M12"></div>
css
{ @include oGridColspan((default: one-half, M: 12)); }

A column which gradually takes up a greater portion of horizontal space as the screen gets smaller:

 data-o-grid-colspan="4 M3 L2 XL1"></div>
css
{ @include oGridColspan((default: 4, M: 3, L: 2, XL: 1)); }

A column which has width: auto on small screens, and then takes half the available space on medium screens and up:

 data-o-grid-colspan="M6"></div>
css
{ @include oGridColspan((M: 6)); }
Advanced usage
Utilities
Hiding elements

hide the column, show it again at Large (L) layout size, and hide it at the largest (XL) layout size:

 data-o-grid-colspan="hide L12 XLhide"></div>
css
{ @include oGridColspan((default: hide, L: 12, XL: hide)); }
Centering a column

center the column and uncenter it at Large (L) layout size:

 data-o-grid-colspan="center Luncenter"></div>
css
column {
@include oGridCenter;

@include oGridRespondTo(L) {
    @include oGridUncenter;
}

Push and pull columns
 data-o-grid-colspan="8 push4"></div>
 data-o-grid-colspan="4 pull8"></div>
css
ontent is first in the source
tent {
@include oGridColspan(8);
@include oGridPush(4); // outputs left: -33.333333333%;


idebar comes second in the source but appears first on the left
ebar {
@include oGridColspan(4);
@include oGridPull(8); // outputs right: -66.666666667%;

Responsively:

 data-o-grid-colspan="L8 Lpush4"></div>
 data-o-grid-colspan="L4 Lpull8"></div>
css
ontent is first in the source
tent {
@include oGridColspan((L: 8));
@include oGridRespondTo(L) {
    @include oGridPush(4); // outputs left: -33.333333333%;
}


idebar comes second in the source but appears first on the left
ebar {
@include oGridColspan((L: 4));
@include oGridRespondTo(L) {
    @include oGridPull(8); // outputs right: -66.666666667%;
}

Add space before a column
 data-o-grid-colspan="8 offset4"></div>

 data-o-grid-colspan="L8 Loffset4"></div>
css
{
@include oGridColspan(8);
@include oGridOffset(4); // outputs margin-left: 33.333333333%;


{
@include oGridColspan((L: 8));

@include oGridRespondTo(L) {
    @include oGridOffset(4); // outputs margin-left: 33.333333333%;
}

Snappy mode

The container size can snap between fixed-widths as the viewport gets larger:

 Make the whole document snappy -->
y class="o-grid-snappy">
<div class="o-grid-container">
    <div class="o-grid-row">
        ?
    </div>
</div>
dy>

 Make a container snappy -->
 class="o-grid-container o-grid-container--snappy">
<div class="o-grid-row">
    ?
</div>
v>
Compact (gutterless) rows

To remove gutters from in between columns in a row, use the o-grid-row--compact class:

 class="o-grid-row o-grid-row--compact">
<div data-o-grid-colspan="6">Look 'ma, no gutters</div>
<div data-o-grid-colspan="6">Look 'pa, no gutters here either</div>
v>
Full bleed container

To remove gutters from the left and right sides of the grid container, use the o-grid-container--bleed class. Note that it is not possible to remove the outer gutters for an individual row, instead you need to start a new container.

 class="o-grid-container o-grid-container--bleed">
<div class="o-grid-row o-grid-row--compact">
    <div data-o-grid-colspan="6">Look 'ma, no gutters</div>
    <div data-o-grid-colspan="6">Look 'pa, no gutters here either</div>
</div>
v>
Responsive column helper

For simplicity, examples below don't show the output code that brings support for Internet Explorer.

Give column properties to an element
 @include oGridColspan(); }

Outputs:

allbacks for Internet Explorer omitted in this example

sition: relative;
oat: left;
x-sizing: border-box;
ex: 1 1 0%;
dding-left: 10px;

ia (min-width: 46.25em) {
 {
padding-left: 20px;


Give a width to an element
 @include oGridColspan($span: 4); }

Outputs:


sition: relative;
oat: left;
x-sizing: border-box;
ex: 1 1 0%;
dding-left: 10px;
splay: block;
ex-basis: 33.33333%;
n-width: 33.33333%;
x-width: 33.33333%;
dth: 33.33333%;

ia (min-width: 46.25em) {
 {
padding-left: 20px;


Responsive width for different layouts

@include oGridColspan((
    default: full-width,
    M: 6
));

Outputs:


sition: relative;
oat: left;
x-sizing: border-box;
ex: 1 1 0%;
dding-left: 10px;
splay: block;
ex-basis: 100%;
n-width: 100%;
x-width: 100%;
dth: 100%;

ia (min-width: 46.25em) {
 {
display: block;
flex-basis: 50%;
min-width: 50%;
max-width: 50%;
padding-left: 20px;


Responsive layout helper
lude oGridRespondTo($from, $until) {
// Styles

To create styles that respond to the same breakpoints as the grid, this Sass mixin can be used to wrap the styles in the appropriate media query. It should be passed S, M, L or XL depending on which layout size the style should apply to e.g.

lude oGridRespondTo(S) {
.o-example-module .item-subheading {
    font-size: 0.5em;
}

xample-module .item-subheading {
@include oGridRespondTo(XL) {
    color: red;
}

xample-module .item-subheading {
@include oGridRespondTo($until: L) {
    width: auto;
}

It relies on Sass MQ to output mobile-first @media queries.

$from is inclusive but $until is exclusive ? e.g. @include oGridRespondTo(S, L) matches the breakpoints S and M, but not L.

Gutters

margin-left: oGridGutter();

@include oGridRespondTo(L) {
    margin-left: oGridGutter(L);
}

Outputs:


rgin-left: 10px;


ia (min-width: 61.25em) {
 {
margin-left: 20px;


Unstyle a row or a column
rowify {
@include oGridResetRow;


columnify {
@include oGridResetColumn;

Variables

Some of the variables used by the grid (see _variables.scss) can be used to customise the grid system.

Here are the most useful ones:

witch Silent mode off
rid-is-silent: false;

isable outputting offset, push and pull selectors
rid-shuffle-selectors: true;

isable outputting human-friendly selectors
rid-human-friendly-selectors: true;

how the currently active breakpoint and output loaded settings
rid-debug-mode: true;

utters (distance between 2 columns), in pixels
rid-gutters: (default: 10px, M: 20px);

rid mode
 fluid: full width up to the largest layout's width
 snappy: fluid width until the layout defined in $o-grid-start-snappy-mode-at (default: M),
         and then snaps into a larger fixed layout at each breakpoint
         (used by Next FT)
 fixed: always fixed-width with the layout defined by
        $o-grid-fixed-layout (default: L)
rid-mode: fluid (default) | snappy | fixed;

rid ie8 rules
 inline: output ie8 selectors alongside modern browser selectors in the same stylesheet
 only: only output ie8 selectors
 none: output no ie8 selectors
rid-ie8-rules: inline (default) | only | none;

efault layouts
rid-layouts: (
S:  490px,
M:  740px,
L:  980px,
XL: 1220px,

Adding a layout

Products who need to add other breakpoints/layouts should use the helper oGridAddLayout():

ort 'o-grid/main';

dd various layouts
lude oGridAddLayout(
$layout-name: XS,
$layout-width: 360px

lude oGridAddLayout(
$layout-name: P,
$layout-width: 600px,
$gutter-width: 24px


ayouts are now:
 XS: 360px,
 S: 490px,
 P: 600px,
 M: 740px,
 L: 980px,
 XL: 1220px

urface the layout currently displayed to make it readable in JS
lude oGridSurfaceCurrentLayout;

enerate grid helpers classes and data attributes
lude oGridGenerate;
Debug mode

Enable debug mode to see the currently active breakpoint in the top-right corner of the page (based on sass-mq's show-breakpoints feature).

rid-debug-mode: true;

show-breakpoints demo

JavaScript Helpers
getCurrentLayout()

Returns the name of the layout currently displayed.

oGrid = require('o-grid');

ole.log(oGrid.getCurrentLayout());
 default | S | M | L | XL
getCurrentGutter()

Returns the width of the gutter currently displayed.

oGrid = require('o-grid');

ole.log(oGrid.getCurrentGutter());
 10px | 20px

When using o-grid silent mode, make sure to surface the grid information to make it readable by the JavaScript Helper by adding @include oGridSurfaceCurrentLayout(); to your Sass file.

Grid Bookmarklet
  1. Create a new Bookmark with this URL:

    script:(function(){var s=document.createElement("script");s.src="https://rawgit.com/Financial-Times/o-grid/master/bookmarklet/bookmarklet.js";document.head.appendChild(s);}());
    
  2. Load a website

  3. Click the bookmarklet (the overlay should appear)

  4. Check the alignment of the layout on the grid


How to upgrade from v3.x.x to v4.x.x?
Important Changes
Markup/Sass changes

License

Copyright (c) 2016 Financial Times Ltd. All rights reserved.

This software is published under the MIT licence.


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.