All Projects → pimbrouwers → purecss-utils

pimbrouwers / purecss-utils

Licence: BSD-2-Clause license
Extesnion Library for YUI Pure CSS (www.purecss.io)

Programming Languages

CSS
56736 projects

Projects that are alternatives of or similar to purecss-utils

healthcare-server
A rubyOnRails based web application with a small concept behind healthcare
Stars: ✭ 16 (-40.74%)
Mutual labels:  purecss
Cyberpunk-2077-theme-css
This is a theme in CSS3 to simulate the interfaxes of the game CyberPunk 2077.
Stars: ✭ 118 (+337.04%)
Mutual labels:  purecss
super-simple-css-tooltips
Super simple tooltips
Stars: ✭ 26 (-3.7%)
Mutual labels:  purecss
Webgradients
A curated collection of splendid gradients made in CSS3, .sketch and .PSD formats.
Stars: ✭ 2,197 (+8037.04%)
Mutual labels:  purecss
Hint.css
A CSS only tooltip library for your lovely websites.
Stars: ✭ 8,158 (+30114.81%)
Mutual labels:  purecss
Icono
One tag One icon, no font or svg, Pure CSS
Stars: ✭ 4,005 (+14733.33%)
Mutual labels:  purecss
polypack
🔥 Polypack - Webpack build stack with focus on performance 🔥
Stars: ✭ 38 (+40.74%)
Mutual labels:  purecss
pure-admin
Simple Pure Admin Panel. Want to make simple blog cms and admin panel, Pure Admin is here.
Stars: ✭ 52 (+92.59%)
Mutual labels:  purecss
responsive-css-grid
A super-lightweight, responsive, 8-column grid based on box-sizing
Stars: ✭ 46 (+70.37%)
Mutual labels:  purecss
Motivation
⏲️ Countdown that terrifyingly shows your age
Stars: ✭ 34 (+25.93%)
Mutual labels:  purecss

YUI Pure CSS Extensions

npm

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

Getting Started

CDN

<link rel="stylesheet" href="https://unpkg.com/purecss-utils"/>

NPM

npm install purecss-utils

Responsive Utilities

Allows for hiding/showing content based on media breakpoints

@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.

.pure-push-{breakpoint}-{1-24}-{1-24} { }
<div class="pure-u-sm-1-4 pure-push-sm-3-4"></div>
<div class="pure-u-sm-3-4 pure-pull-sm-1-4"></div>

Flexbox Grid

Flexbox powered grid.

<div class="pure-g-flex">
	<div class="pure-u-flex-1-3 pure-u-flex-sm-2-3"></div>
	<div class="pure-u-flex-2-3 pure-u-flex-sm-1-3"></div>
</div>
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].