Giter Site home page Giter Site logo

madshensel / standard-grid-generator Goto Github PK

View Code? Open in Web Editor NEW

This project forked from johnpolacek/simple-grid-generator

0.0 2.0 0.0 72 KB

A SASS grid generator for creating responsive grids with some nice features.

License: MIT License

CSS 100.00%

standard-grid-generator's Introduction

#Standard Grid Generator (SASS)

A SASS grid generator for creating responsive grids with some nice features.

##Features

####Easy to Use

@import 'grid.generator.scss';
@include gridGenerator();

####Set Your Columns Switch to a 18-column or 24-column grid instead.

@include gridGenerator(18);

####Breakpoints and Breakpoint Prefixes Change the breakpoints, or add in more. Name the prefixes whatever you like xs-, xl-, etc. If you prefer, set ems for your breakpoints.

@include gridGenerator(
    12,
    (0, 20em, 30em, 60em, 80em),
    (xs-,s-,m-,l-,xl-),
    'em'
);

Breakpoint prefixing allows for markup that sets a default grid width, then overrides at different screen widths.

<div class="grid-3 m-grid-6 s-grid-12">
<!-- 
	In a 12-column grid, this translates to: 
		- Quarter width by default
		- Half width at the medium breakpoint
		- Full width at the small breakpoint
-->

####Spacing Helpers For quick, easy layouts, set custom utility classes to set consistent padding and margin on all your elements.

@include gridGenerator(
    12,
    (0, 480px, 800px),
    (s-,m-,l-),
    'px',
    $spaceUnits: (.5em,1em,2em)
);

In your HTML:

<div class="pad-2 m-pad-1 s-pad-0">
<div class="pad-bottom-4 marg-bottom-2">
<div class="pad-vertical-1 pad-sides-2">

You can use responsive breakpoint prefixing on these as well.

<div class="pad-sides-2 s-pad-sides-1">

Or don’t use any spacing helpers, if you prefer.

@include gridGenerator(
    12,
    (0, 480px, 800px),
    (s-,m-,l-),
    'px',
    $spaceUnits: false
);

##License Author & copyright (c) 2015: John Polacek, Dual MIT & GPL license

standard-grid-generator's People

Contributors

johnpolacek avatar

Watchers

James Cloos avatar Mads Hensel avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.