Skip to content

Commit

Permalink
added intro
Browse files Browse the repository at this point in the history
  • Loading branch information
davide committed May 17, 2018
1 parent a9f1e51 commit 8acd236
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<p align="center">
<img src="./assets/images/beegrid_icon_teal.png" width=80 height=80 />
<h1>Beegrid</h1>
A mini CSS microframework to build various types of grids thanks to a twelve column system, five default responsive tiers, Sass variables and mixins, and dozens of predefined classes to organize your content.
A microframework based on CSS Grid Layout to build various types of grids thanks to a twelve column system, five default responsive tiers, Sass variables and mixins, and dozens of predefined classes to organize your content.
</p>

## Table of contents
Expand Down
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ exclude:

# Social
title: BeeGrid
description: "A mini CSS microframework to build various types of grids thanks to a twelve column system, five default responsive tiers, Sass variables and mixins, and dozens of predefined classes to organize your content."
description: "A microframework based on CSS Grid Layout to build various types of grids thanks to a twelve column system, five default responsive tiers, Sass variables and mixins, and dozens of predefined classes to organize your content."
twitter: beegrid
authors: "Davide D'Antonio"

Expand Down
4 changes: 2 additions & 2 deletions assets/css/bee-docs.css.map

Large diffs are not rendered by default.

18 changes: 16 additions & 2 deletions docs/1.0/introduction.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,28 @@
---
layout: docs
title: Introduction
description: Beegrid is a mini CSS microframework to build various types of grids thanks to a twelve column system, five default responsive tiers, Sass variables and mixins, and dozens of predefined classes to organize your content easily.
description: A microframework based on CSS Grid Layout specs to build various types of grids thanks to a twelve column system, five default responsive tiers, Sass variables and mixins, and dozens of predefined classes to organize your content.
redirect_from:
- /docs/
- /docs/1.0/
- /docs/1.0/introduction/
- /docs/introduction/
---

# Before you start

## What is CSS Grid Layout

[CSS Grid Layout](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout) is a CSS layout method designed for the two-dimensional layout of items on a webpage. This method offers a grid-based layout system, with rows and columns, making it easier to design web pages without having to use floats and positioning.

## Status of the specs and browser support

Chrome, Firefox and Safari shipped grid support in March 2017. IE10, 11 and Edge 15 and lower support an older, prefixed spec. In October 2017 Edge will update to the new specification to match other implementations. See [Can I Use](http://caniuse.com/#feat=css-grid) to see supported browsers.

## Differences with Flexbox

The main difference is that Flexbox is for one-dimensional layouts while Grid is for two-dimensional layouts.

# Quick start

If you want quickly start to build awesome grids? Download a {{ site-title }} release. If you want to use a package manager or source files, please go to <a href="{{ site.base_url }}/docs/download/">Download page</a>.
Expand Down Expand Up @@ -49,4 +63,4 @@ To ensure proper rendering and touch zooming for all devices, add the responsive

{% highlight html %}
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
{% endhighlight %}
{% endhighlight %}
2 changes: 1 addition & 1 deletion scss/docs/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ $link-hover-color: $grey-800 !default;
$link-decoration: none !default;
$link-hover-decoration: underline !default;

$font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !default;
$font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !default;
$table-cell-padding: .75rem !default;
$table-cell-padding-sm: .3rem !default;

Expand Down

0 comments on commit 8acd236

Please sign in to comment.