HomeGrid & Layout
Preview
css
Code
css
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 1rem;
}

.bento-wide  { grid-column: span 2; }
.bento-tall  { grid-row: span 2; }
.bento-large { grid-column: span 2; grid-row: span 2; }

@media (max-width: 768px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-wide, .bento-large { grid-column: span 2; }
}
Related Blocks
css
12-Column Grid
CSS Grid ile 12 kolonlu standart layout sistemi.
css
Centered Narrow
Centered content column with 650px max width.
css
Dashboard Layout
Side menu + top bar + content area.