{"id":15151804,"url":"https://github.com/syaifulsz/bootstrap-helper-blocks","last_synced_at":"2026-02-14T13:33:28.346Z","repository":{"id":58218161,"uuid":"84437077","full_name":"syaifulsz/bootstrap-helper-blocks","owner":"syaifulsz","description":"A Bootstrap 3 responsive helper for adding width to inline block. The widths are calculated based on element parent container and are based on 12 grid columns.","archived":false,"fork":false,"pushed_at":"2017-03-10T08:34:10.000Z","size":10,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-02-05T01:43:23.125Z","etag":null,"topics":["block","bootstrap","bootstrap-helpers","bootstrap3","css","css-framework","width"],"latest_commit_sha":null,"homepage":null,"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/syaifulsz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-03-09T11:58:50.000Z","updated_at":"2017-03-09T12:10:10.000Z","dependencies_parsed_at":"2022-08-30T20:00:50.854Z","dependency_job_id":null,"html_url":"https://github.com/syaifulsz/bootstrap-helper-blocks","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/syaifulsz/bootstrap-helper-blocks","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/syaifulsz%2Fbootstrap-helper-blocks","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/syaifulsz%2Fbootstrap-helper-blocks/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/syaifulsz%2Fbootstrap-helper-blocks/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/syaifulsz%2Fbootstrap-helper-blocks/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/syaifulsz","download_url":"https://codeload.github.com/syaifulsz/bootstrap-helper-blocks/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/syaifulsz%2Fbootstrap-helper-blocks/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29444752,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T12:43:28.304Z","status":"ssl_error","status_checked_at":"2026-02-14T12:43:14.160Z","response_time":53,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["block","bootstrap","bootstrap-helpers","bootstrap3","css","css-framework","width"],"created_at":"2024-09-26T15:21:54.627Z","updated_at":"2026-02-14T13:33:28.330Z","avatar_url":"https://github.com/syaifulsz.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Bootstrap Helper: Blocks\n\nThis is a responsive helper for adding width to inline block. The widths are calculated based on element parent container and are based on 12 grid columns.\n\nThese helper supports Bootstrap 3 responsive utilities (xs, sm, md, lg). Additional media queries is configurable and can be extended depending on your project requirements.\n\n## Getting Started\n\n[Download](https://github.com/syaifulsz/bootstrap-helper-blocks/releases) latest version or install by bower:\n\n```sh\nbower install bootstrap-helper-blocks\n```\n\nInclude this stylesheet code into your site:\n\n```html\n\u003clink rel=\"stylesheet\" href=\"dist/bootstrap-helper-blocks.min.css\" /\u003e\n```\n\nIf you want to have a responsive margin-padding helper, include this stylesheet too:\n\n```html\n\u003clink rel=\"stylesheet\" href=\"dist/bootstrap-helper-blocks-responsive.min.css\" /\u003e\n```\n\n## Example usage:\n\n```html\n\u003cdiv class=\"clearfix\"\u003e\n    \u003cdiv class=\"pull-left block--1-2\"\u003e\n        \u003ca href=\"#\" class=\"btn btn-primary btn-block\"\u003eSubmit\u003c/a\u003e\n    \u003c/div\u003e\n    \u003cdiv class=\"pull-left block--1-2\"\u003e\n        \u003ca href=\"#\" class=\"btn btn-danger btn-block\"\u003eCancel\u003c/a\u003e\n    \u003c/div\u003e\n\u003c/div\u003e\n```\n\n## Example usage with responsive media query:\n\n```html\n\u003cdiv class=\"clearfix text-center\"\u003e\n    \u003cdiv class=\"pull-left block-md--1-2 block-sm--1-4 block-xs\"\u003e\n        Box 1\n    \u003c/div\u003e\n    \u003cdiv class=\"pull-left block-md--1-2 block-sm--1-4 block-xs\"\u003e\n        Box 2\n    \u003c/div\u003e\n    \u003cdiv class=\"pull-left block-md--1-2 block-sm--1-4 block-xs--1-2\"\u003e\n        Box 3\n    \u003c/div\u003e\n    \u003cdiv class=\"pull-left block-md--1-2 block-sm--1-4 block-xs--1-2\"\u003e\n        Box 4\n    \u003c/div\u003e\n\u003c/div\u003e\n```\n\n## Extends and compile with Bootstrap 3 SASS\n\nYou're required to install these in order to extends this helper:\n\n- NodeJS\n- Grunt CLI\n- Ruby\n- SASS\n\n### Installation\n\nRun:\n\n```sh\nnpm install\n```\n\n### Compile\n\nRun:\n\n```sh\ngrunt\n```\n\n### Enable Bootstrap 3's responsive utilities for this helper\n\nChange these variables to `true`.\n\n```sass\n$helper-block--xs: false\n$helper-block--sm: false\n$helper-block--md: false\n$helper-block--lg: false\n```\n\n### Adjust grid columns\n\nAdjust grid column here:\n\n```sass\n$grid: 12\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsyaifulsz%2Fbootstrap-helper-blocks","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsyaifulsz%2Fbootstrap-helper-blocks","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsyaifulsz%2Fbootstrap-helper-blocks/lists"}