Pure Change History

0.6.0 (2015-02-07)

Menus

0.5.0 (2014-05-27)

Base

Grids

To use the mobile-first grid system, you need to pull in pure.css, along with grids-responsive.css. We also have grids-responsive-old-ie.css that you can serve to IE < 9 users so that they can view a desktop-version of your website:

```html
<link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.5.0-rc-1/pure-min.css">

<!--[if lt IE 9]>
    <link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.5.0-rc-1/grids-responsive-old-ie-min.css">
<![endif]-->
<!--[if gt IE 8]><!-->
    <link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.5.0-rc-1/grids-responsive-min.css">
<!--<![endif]-->
```

Find out more about the new grid system at purecss.io/grids/.

Tables

0.4.2 (2014-02-13)

Forms

0.4.1 (2014-02-06)

Base

A new rule for the [hidden] selector has been added with the declaration: display: none !important;. This is a time where it's appropriate for a project like Pure to use !important. (#177)

Buttons

Forms

Grids

Menus

0.4.0 (2014-02-06)

0.3.0 (2013-09-09)

Note: When using a custom subset of Pure, be sure to include the Base module.

Base

Buttons

Forms

Grids

Grids now uses CSS3 Flexbox when possible to avoid the side-effects of setting a negative letter-spacing — the fallback for older browsers. Grids also now uses a specific font stack on .pure-g and .pure-g-r classes to ensure the greatest OS/browser compatibility when non-default fonts are being used. By default grid units will now have font-family: sans-serif; applied — this is the default font stack Pure's Base module (Normalize.css) applies to the <body>.

This is a breaking change if you are using any non-default fonts in your web project. Fortunately, it's quite easy to make sure your custom font stacks apply to content within Pure Girds. Instead of applying your custom font to only the <body> element, apply it to the grid units as well:

```css
body,
.pure-g [class *= "pure-u"],
.pure-g-r [class *= "pure-u"] {
    /* Set you're content font stack here: */
    font-family: Georgia, Times, "Times New Roman", serif;
}
```

Refer to the Grids Documentation for more details on using non-default fonts with Pure Grids. (#41, #162, #166, #189: @adapterik @dannyfritz, @pandeiro)

0.2.1 (2013-07-17)

Forms

Grids

Menus

Tables

0.2.0 (2013-06-11)

Forms

Grids

Menus

0.1.0 (2013-05-24)

Buttons

Menus

0.0.2 (2013-05-16)

0.0.1 (2013-05-14)