An open API service indexing awesome lists of open source software.

https://github.com/pimbrouwers/purecss-utils

Extesnion Library for YUI Pure CSS (www.purecss.io)
https://github.com/pimbrouwers/purecss-utils

css purecss yui

Last synced: 15 days ago
JSON representation

Extesnion Library for YUI Pure CSS (www.purecss.io)

Awesome Lists containing this project

README

        

# YUI Pure CSS Extensions

[![npm](https://img.shields.io/npm/v/purecss-utils.svg)](https://www.npmjs.com/package/purecss-utils)

Extension Library for YUI Pure CSS (www.purecss.io) designed to work purposefully with the default grid.

## Getting Started

### CDN

```html

```

### NPM

```javascript
npm install purecss-utils
```

## Responsive Utilities
Allows for hiding/showing content based on media breakpoints

```css
@media screen and (max-width:35.5em) {
.pure-hidden-xs {
display: none !important
}
}

@media screen and (min-width:35.5em) and (max-width:47.999em) {
.pure-hidden-sm {
display: none !important
}
}

@media screen and (min-width:48em) and (max-width:63.999em) {
.pure-hidden-md {
display: none !important
}
}

@media screen and (min-width:64em) and (max-width:79.999em) {
.pure-hidden-lg {
display: none !important
}
}

@media screen and (min-width:80em) {
.pure-hidden-xl {
display: none !important
}
}
```

## Push & Pull
Boostrap-esque pushing and pulling, to offset columns.

```css
.pure-push-{breakpoint}-{1-24}-{1-24} { }
```

```html



```

## Flexbox Grid
Flexbox powered grid.

```html





```