New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@labeg/gridlex

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@labeg/gridlex

Just a Flexbox Grid System

latest
Source
npmnpm
Version
3.0.15
Version published
Weekly downloads
24
-56.36%
Maintainers
1
Weekly downloads
 
Created
Source

Gridlex

!!! Fork !!!

Fork for drop deprecated node-sass and support sass 2. The original repository you can find here.

Just a Flexbox Grid System

Based on Flexbox (CSS Flexible Box Layout Module), Gridlex is a very simple css grid system to quickly create modern layouts and submodules.

The concept is simple: you need to wrap your .col in a .grid.

What can we expect?

  • Basically each column is the same width as every other cell in the grid.
  • But you can add sizing classes to individual columns.
  • For responsive designs, you can add classes based on media-queries.
  • Top, bottom, or middle. For the grid. And for the columns.
  • Grids can be nested. Always. Directly in a column.

Sass, CSS?

I want to include it in my source files!

Just include gridlex/src/gridlex.scss and update the $gl- vars:

Variable namesDefault value
$gl-colCount:12
$gl-gridName:grid
$gl-colName:col
$gl-attributeName:class
$gl-gutter:1rem
$gl-gutter-vertical:1rem
$gl-mq-width:'max-width'
$gl-mq-list:
(
         lg: 80em, // max 1280px
         md: 64em, // max 1024px
         sm: 48em, // max 768px
         xs: 36em // up to 576px
 )

Install via Npm

npm install @labeg/gridlex --save-dev

3 ways to use Gridlex

1- The basic. Just add a class .grid-* (from -1 to -12)

<div class="grid-1">
	<div class="col">...</div>
</div>

2- The precise. Compose cell by cell (with class like .col-*)

<div class="grid">
	<div class="col-12">...</div>
</div>

3- The automatic. Just add number of cells you want in the grid (.grid > .col)

<div class="grid">
		<div class="col">...</div>
		<div class="col">...</div>
</div>

Gridlex and media-queries

Because of responsive, you sometimes need to change the size of columns: with this keys as classes you can control your layout by media-queries.

Columns can be hidden at breakpoints using _*-0 (e.g. col-4_md-6_sm-0)

CSS Media QueryAppliesUsage
@media screen and (max-width: 36rem)Max 576px_xs-*
@media screen and (max-width: 48em)Max 768px_sm-*
@media screen and (max-width: 64em)Max 1024px_md-*
@media screen and (max-width: 80em)Max 1280px_lg-*

See more : http://labeg.github.io/gridlex/

Keywords

css

FAQs

Package last updated on 14 Jul 2023

Did you know?

Socket

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