
Security News
Open Source CAI Framework Handles Pen Testing Tasks up to 3,600× Faster Than Humans
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
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
.
I just wanna use it in my page!
To use Gridlex out of the box, call the gridlex.min.css file in your project :
Via cdnjs:
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/gridlex/2.7.1/gridlex.min.css">
I want to include it in my source files!
Just include gridlex/src/gridlex.scss and update the $gl- vars:
Variable names | Default 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: |
|
npm install gridlex --save
bower install gridlex --save
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>
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 Query | Applies | Usage |
---|---|---|
@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://gridlex.devlint.fr
FAQs
Just a Flexbox Grid System
The npm package gridlex receives a total of 665 weekly downloads. As such, gridlex popularity was classified as not popular.
We found that gridlex demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.