
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
A fixed-fluid, full-width web application css grid.
Ever wonder where all the css grids are that allow you to create full width and full height web layouts?
Play with the code on Codepen:
http://codepen.io/scottcorgan/pen/jkHov
Install with Bower
bower install molten --save
HTML
<link rel="stylesheet" href="path/to/components/molten/molten.css">
or Import - sass/scss/less
@import 'path/to/molten.scss'; - scss/sass
@import 'path/to/molten.less'; - less
Creating a basic 2 column, left sidebar grid.

<div class="grid columns split250">
<aside class="bar">
<!-- left sidebar (250px) -->
</aside>
<section class="content">
<!-- the content (fluid) -->
</section>
</div>
Molten gives you classes to create grids based on columns and rows. You can nest rows and columns within rows and columns to help you build complex layouts. There is no limit to how many grids you can nest.

<div class="grid columns split250">
<nav class="bar">
<!-- left sidebar (250px) -->
</nav>
<div class="content">
<!-- Girdception!! -->
<section class="grid rows split50">
<aside class="bar">
<!-- topbar (50px) -->
</aside>
<article class="content">
<!-- content (fluid) -->
</article>
</section>
</div>
</div>
Sidebar on the left side
<div class="grid columns split250">
<div class="bar">
<!-- left sidebar (250px) -->
</div>
<div class="content">
<!-- the content (fluid) -->
</div>
</div>
Sidebar on the right side
<div class="grid columns split250 right"> <!-- only need to add the "right" class name -->
<div class="bar">
<!-- right sidebar (250px) -->
</div>
<div class="content">
<!-- the content (fluid) -->
</div>
</div>
Header bar along the top
<div class="grid rows split50"> <!-- use "rows" instead of "columns" for a top bar -->
<div class="bar">
<!-- top bar (50px) -->
</div>
<div class="content">
<!-- the content (fluid) -->
</div>
</div>
Footer bar long the bottom
<div class="grid rows split50 bottom"> <!-- only need to add the "bottom" class name -->
<div class="bar">
<!-- bottom bar (50px) -->
</div>
<div class="content">
<!-- the content (fluid) -->
</div>
</div>
.split50.split100.split150.split200.split225.split250.split275.split300.split325.split350.split375.split400.split10.split20.split30.split40.split50.split60.split70.split80.split90.split100.split200.split300Desktop:
Mobile
FAQs
A fixed-fluid web application css grid volcano.
The npm package molten receives a total of 4 weekly downloads. As such, molten popularity was classified as not popular.
We found that molten 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.