{"id":16052083,"url":"https://github.com/josephfusco/condensed-bootstrap-grid","last_synced_at":"2026-04-29T13:31:50.778Z","repository":{"id":58232158,"uuid":"37550149","full_name":"josephfusco/condensed-bootstrap-grid","owner":"josephfusco","description":"A fully configurable grid system inside a tiny Sass partial.","archived":false,"fork":false,"pushed_at":"2017-05-30T16:08:46.000Z","size":20,"stargazers_count":1,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-26T21:32:55.597Z","etag":null,"topics":["bootstrap","bootstrap-sass","css","grid"],"latest_commit_sha":null,"homepage":"","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/josephfusco.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}},"created_at":"2015-06-16T19:03:04.000Z","updated_at":"2021-04-07T12:51:00.000Z","dependencies_parsed_at":"2022-08-31T00:20:53.414Z","dependency_job_id":null,"html_url":"https://github.com/josephfusco/condensed-bootstrap-grid","commit_stats":null,"previous_names":["whitetail/condensed-bootstrap-grid"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/josephfusco/condensed-bootstrap-grid","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/josephfusco%2Fcondensed-bootstrap-grid","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/josephfusco%2Fcondensed-bootstrap-grid/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/josephfusco%2Fcondensed-bootstrap-grid/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/josephfusco%2Fcondensed-bootstrap-grid/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/josephfusco","download_url":"https://codeload.github.com/josephfusco/condensed-bootstrap-grid/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/josephfusco%2Fcondensed-bootstrap-grid/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32427461,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T12:24:25.982Z","status":"ssl_error","status_checked_at":"2026-04-29T12:24:24.439Z","response_time":110,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["bootstrap","bootstrap-sass","css","grid"],"created_at":"2024-10-09T01:06:41.507Z","updated_at":"2026-04-29T13:31:50.740Z","avatar_url":"https://github.com/josephfusco.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Condensed Bootstrap Grid\n\nA fully configurable \u0026 self contained grid system based on Bootstrap 3.\n\n## Setup\n\nDownload and place `_grid.scss` inside of your Sass project \u0026 import the grid partial.\n\n```scss\n@import \"grid\";\n```\n\n### Bower\n\n```sh\nbower install cbg\n```\n\n## Usage\n\nThe default classnames generated and markup are identical to Bootstrap 3, however, [nearly everything is configurable](#options).\n\n## Options\n\n|Option \t\t  \t|Type\t|Default\t\t|Description\t\t\t\t   \t\t|\n|---\t\t\t\t|---\t|---\t\t\t|---\t\t\t\t\t\t\t|\n|`$cbg__total-grid-cols`\t|Number\t|12   \t\t\t|Total number of grid columns  \t\t\t\t|\n|`$cbg__gutter`\t\t\t|Length\t|15px\t\t\t|Size of the gutters between columns\t\t\t|\n|`$cbg__namespace`\t\t|String\t|none\t\t\t|Adds a namespace before classnames\t\t\t|\n|`$cbg__name--col`   \t\t|String\t|\"col\"\t\t\t|Text generated in classname\t\t\t\t|\n|`$cbg__name--pull`   \t\t|String\t|\"pull\"\t\t\t|Text generated in classname\t\t\t\t|\n|`$cbg__name--push`   \t\t|String\t|\"push\"\t\t\t|Text generated in classname\t\t\t\t|\n|`$cbg__name--offset`  \t\t|String\t|\"offset\"\t\t|Text generated in classname\t\t\t\t|\n|`$cbg__name--clearfix`\t\t|String\t|\"clearfix\"\t\t|Text generated in classname\t\t\t\t|\n|`$cbg__name--container`\t|String\t|\"container\"\t\t|Text generated in classname\t\t\t\t|\n|`$cbg__name--container-fluid`\t|String\t|\"container-fluid\"\t|Text generated in classname\t\t\t\t|\n|`$cbg__breakpoints`\t\t|Map\t|Bootstrap 3 defaults\t|[See next section](#breakpoints)\t\t\t|\n\n### Breakpoints\n\nBreakpoints can be configured in a separate option. The defaults are set to Bootstrap 3 defaults grid dimensions.\n\nSimply override the Sass map `cbg__breakpoints`.\n\n```scss\n// Generated string for classname: ($min-screen-width, $container-width)\n$cbg__breakpoints: (\n\txs: (0px, 100%),\n\tsm: (768px, 750px),\n\tmd: (992px, 970px),\n\tlg: (1200px, 1170px)\n)\n```\n\n### What about the official Bootstrap Sass?\n\nThe official [Bootstrap Sass](https://github.com/twbs/bootstrap-sass) works just great but requires a little more setup if you only want the grid. This also requires you to download the entire bootstrap sass directory where as the condensed bootstrap grid is only one small file.\n\n### Acknowledgement\n\n[Bootstrap](http://getbootstrap.com/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjosephfusco%2Fcondensed-bootstrap-grid","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjosephfusco%2Fcondensed-bootstrap-grid","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjosephfusco%2Fcondensed-bootstrap-grid/lists"}