Socket
Socket
Sign inDemoInstall

lin3s-css-grid

Package Overview
Dependencies
0
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    lin3s-css-grid

Simple CSS grid based on Flexbox in the LIN3S way


Version published
Weekly downloads
4
decreased by-20%
Maintainers
1
Install size
18.0 kB
Created
Weekly downloads
 

Readme

Source

#CSSGrid

Simple CSS grid based on Flexbox in the LIN3S way.

npm version NPM Status devDependency Status

##Installation The recommended and the most suitable way to install is through Yarn:

$ yarn add lin3s-css-grid

or alternatively through NPM:

$ npm install --save lin3s-css-grid

Also, you can install through Bower.

$ bower install --save lin3s-css-grid

After installation process, you can include css file in your html.

<link href="/your/path/lin3s-css-grid/dist/lin3s-css-grid.min.css" type="text/css" rel="stylesheet">

However is highly recommend to use the Sass version of the grid including files as Sass's imports. The best practice is to create a row.scss component that wraps all the grid generation logic. Basic example can be the following code:

$grid-type: 'adaptive'; // also, it can be fluid

$row-padding: 15px;
$row-width: 1290;

$column-count: 12;
$column-gutter: 30px;

$small-cols: 6;
$medium-cols: 3, 4, 6;
$large-cols: 1, 2, 3, 4, 6;
$xlarge-cols: 6;

$small-breakpoint: 640;
$medium-breakpoint: 1024;
$large-breakpoint: 1279;
$xlarge-breakpoint: 1440;

@import '../../node_modules/lin3s-css-grid/scss/row';

##Licensing Options License

Keywords

FAQs

Last updated on 15 Feb 2017

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc