All Projects → garrettmaring → gridCSS

garrettmaring / gridCSS

Licence: other
A simple CSS grid system for mobile friendly web applications.

Programming Languages

CSS
56736 projects
HTML
75241 projects

Projects that are alternatives of or similar to gridCSS

comet
A minimal and robust BEM-style CSS toolkit.
Stars: ✭ 18 (-10%)
Mutual labels:  css-framework
aioneframework
Aione Framework: All-in-one lightweight mobile first front-end framework to design websites, web applications, mobile applications, progressive web applications having large number of examples, documentation, tutorials, community support, components.
Stars: ✭ 13 (-35%)
Mutual labels:  css-framework
skelet
Skelet.css a contemporary CSS framework. The basics to get started.
Stars: ✭ 69 (+245%)
Mutual labels:  css-framework
motley
CSS Framework based on ITCSS
Stars: ✭ 24 (+20%)
Mutual labels:  css-framework
pine
Responsive CSS Framework ( PineCSS )
Stars: ✭ 41 (+105%)
Mutual labels:  css-framework
sircus
Flexible Modular CSS Family for Designing in the Browser.
Stars: ✭ 19 (-5%)
Mutual labels:  css-framework
buldy
🎈 Modern CSS framework distilled from the best of larger frameworks
Stars: ✭ 18 (-10%)
Mutual labels:  css-framework
notion.css
A minimal CSS framework that resembles the aesthetic of the note taking app Notion
Stars: ✭ 28 (+40%)
Mutual labels:  css-framework
assembler
A modern UI framework
Stars: ✭ 171 (+755%)
Mutual labels:  css-framework
attriCSS
AttriCSS is a classless css framework that style normal ugly html to beautiful website.
Stars: ✭ 26 (+30%)
Mutual labels:  css-framework
nativekit
Native UI Kit for Electron Framework. Native Kit is a new way to build Electron apps for macOS and Windows with all the native looks for the different operating systems.
Stars: ✭ 15 (-25%)
Mutual labels:  css-framework
Stylizer
Stylizer is a flexible Css framework based on the visual aspect, the framework offers you a clean and easy work.
Stars: ✭ 44 (+120%)
Mutual labels:  css-framework
Katana
Katana is CSS Layout System made with Flexbox
Stars: ✭ 57 (+185%)
Mutual labels:  css-framework
shapecss-framework
A modern stylish css framework
Stars: ✭ 14 (-30%)
Mutual labels:  css-framework
unitscss
UNITS is a simple and beautiful CSS component set.
Stars: ✭ 13 (-35%)
Mutual labels:  css-framework
svelteit
Svelteit is a minimalistic UI/UX component library for Svelte and Sapper projects
Stars: ✭ 64 (+220%)
Mutual labels:  css-framework
milligram-stylus
A minimalist CSS framework on Stylus version.
Stars: ✭ 19 (-5%)
Mutual labels:  css-framework
concrete.css
A simple and to the point classless CSS framework
Stars: ✭ 95 (+375%)
Mutual labels:  css-framework
Jikan
A new CSS framework for better, faster and more beautiful UIs.
Stars: ✭ 19 (-5%)
Mutual labels:  css-framework
atomize
A library of atomic CSS classes.
Stars: ✭ 51 (+155%)
Mutual labels:  css-framework

gridCSS

An easily customizable grid system that won't interfere with your styles.

Row: row

Column Sizes:

  • sm: 768px and up
  • md: 992px and up
  • lg: 1200px and up

Widths: 1 - 12 (inclusive)

Offsets: 1 - 11 (inclusive)

Sample Syntax (this creates a column of size "medium" with a width of 3 offset by a size "medium" width 4 column): <div class="col-md-3 col-md-offset-4

Demo

grid-row picture

Usage

You create a row which will be structed as any number of columns with a total column width of 12. You do this by adding the class row.

You then add column classes to indicate their width. The widths range from 1-12 (inclusive). You also specify the screen width you are targeting using the sm, md, or lg indicator. The result will look like: col-md-2.

You can also offset using similar syntax: col-lg-offset-3. That is creating a column with an equivalent width to a large-width-3 column but is using that to push the next column to the right.

Sample Code

<div class="row">
  <div class="col-md-7">
    <p>I am as wide as a col-7!<p>
  </div>
  <div class="col-md-5">
    <p>I am as wide as a col-5!<p>
  </div>
</div>

<!-- With offsets -->
<div class="row">
  <div class="col-md-5">
    <p>I am as wide as a col-5!<p>
  </div>
  <div class="col-md-5 col-offset-md-2">
    <p>I am as wide as a col-5 but offset by 2 column widths!<p>
  </div>
</div>

License

MIT license

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