{"id":15980391,"url":"https://github.com/markteekman/flexbox-grid","last_synced_at":"2026-05-18T19:04:57.586Z","repository":{"id":104835335,"uuid":"235750090","full_name":"markteekman/flexbox-grid","owner":"markteekman","description":"Flexbox Grid is a simple yet powerful responsive front-end grid based on the Flexbox CSS property. It helps you to quickly build advanced layouts for prototyping and real-life projects.","archived":false,"fork":false,"pushed_at":"2020-06-20T11:11:19.000Z","size":12,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-09-18T21:43:14.470Z","etag":null,"topics":["columns","css","flexbox","flexbox-css","flexbox-grid","front-end","grid","grid-layout","responsive","responsive-design","responsive-layout","scss"],"latest_commit_sha":null,"homepage":"https://markteekman.nl/project/flexbox-grid","language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/markteekman.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-01-23T08:07:12.000Z","updated_at":"2023-07-25T14:32:18.000Z","dependencies_parsed_at":null,"dependency_job_id":"74f1c2ef-d32d-4745-8ad0-cc0963d57c74","html_url":"https://github.com/markteekman/flexbox-grid","commit_stats":{"total_commits":7,"total_committers":2,"mean_commits":3.5,"dds":0.4285714285714286,"last_synced_commit":"7652642dc305a0b08425fd4b9f6429d93c7ffa12"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/markteekman/flexbox-grid","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/markteekman%2Fflexbox-grid","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/markteekman%2Fflexbox-grid/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/markteekman%2Fflexbox-grid/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/markteekman%2Fflexbox-grid/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/markteekman","download_url":"https://codeload.github.com/markteekman/flexbox-grid/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/markteekman%2Fflexbox-grid/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278909726,"owners_count":26066890,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-08T02:00:06.501Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["columns","css","flexbox","flexbox-css","flexbox-grid","front-end","grid","grid-layout","responsive","responsive-design","responsive-layout","scss"],"created_at":"2024-10-08T00:04:55.343Z","updated_at":"2025-10-08T08:09:58.880Z","avatar_url":"https://github.com/markteekman.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Flexbox Grid\n**Powerful, simple, responsive.**\n\nFlexbox Grid is a simple yet powerful responsive front-end grid based on the Flexbox CSS property. It helps you to quickly build advanced layouts for prototyping and real-life projects. Either choose the minified CSS version or the SCSS version to get started. The SCSS version includes a responsive breakpoint mixin as a **bonus** 😉\n\n**Browser support**: All major browsers including Firefox, Safari, Chrome, Opera and Edgde. Includes fallbacks for Internet Explorer 11+.\n\n[DEMO WITH EXAMPLES AND OPTIONS](https://markteekman.nl/project/flexbox-grid)\n\n## Minified CSS\nThe quickest way to get started is to include the minified CSS version into your project:\n\n```html\n\u003chead\u003e\n  \u003clink rel=\"stylesheet\" href=\"/css/flexbox-grid-min.css\"\u003e\n\u003c/head\u003e\n```\n\n**Note**: Be sure to include a reset like [Normalize](https://necolas.github.io/normalize.css/) or your own version for setting the default box-sizing, margins and paddings. The minified version sets the box-sizing to default. This minimizes deviations between browsers.\n\nBasic usage (see the demo for all examples and options):\n\n```html\n\u003cdiv class=\"container\"\u003e\n  \u003cdiv class=\"grid\"\u003e\n    \u003cdiv class=\"cell small-12 medium-4\"\u003e\n      \u003c!-- your html --\u003e\n    \u003c/div\u003e\n    \u003cdiv class=\"cell small-12 medium-8\"\u003e\n      \u003c!-- your html --\u003e\n    \u003c/div\u003e\n  \u003c/div\u003e\n\u003c/div\u003e\n```\n\n## SCSS\nTo use the SCSS version just include the partial files into your project. You can find the variables of the responsive breakpoints and your grid in the `app.scss` file. As a bonus you can use the breakpoint mixin with the the pre-defined breakpoint variables (small, medium, large and huge). For example:\n\n```scss\n@include breakpoint(medium) {\n  // your styles for the medium and larger breakpoint\n}\n```\n\nOr use the custom breakpoint:\n\n```scss\n@include breakpoint(840) {\n  // your styles for the 840px and larger breakpoint\n}\n```\n\n**Tip**: To minimize deviations between browsers use vendor prefixing and CSS resets when compiling your SCSS.\n\n## License\nMIT license. Use it however you like 😄\n\n## Inspiration\nInspired by some awesome people and organizations on the web: Zell Liew, ZURB's Foundation, CSS Tricks and Solved by Flexbox to name a few.\n\n## Something not working right?\nLet me know by submitting an issue. I'll see what I can do!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarkteekman%2Fflexbox-grid","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmarkteekman%2Fflexbox-grid","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarkteekman%2Fflexbox-grid/lists"}