Skip to content

Latest commit

 

History

History
45 lines (37 loc) · 691 Bytes

File metadata and controls

45 lines (37 loc) · 691 Bytes

grid-template-columns: repeat( auto-fill, minmax(min(calc(180px + 12vmin), 100%), 1fr));

section { display: grid; grid-template-columns: repeat( auto-fill, minmax(min(calc(180px + 12vmin), 100%), 1fr) ); border: var(--border); }

div { background-color: #eee; height: 0; padding-bottom: 100%; border: var(--border); }

:root { --border: 2px solid #777; }