{"id":21418713,"url":"https://github.com/milankyncl/flex-grid-framework","last_synced_at":"2026-04-13T01:33:38.225Z","repository":{"id":134902474,"uuid":"129962225","full_name":"milankyncl/flex-grid-framework","owner":"milankyncl","description":"Super minimalistic CSS flex grid framework for easy manipulation with friendly-responsive websites.","archived":false,"fork":false,"pushed_at":"2019-03-17T22:22:22.000Z","size":74,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-07T03:03:01.320Z","etag":null,"topics":["css","flex","flexbox","framework","framework-css","grid","scss"],"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/milankyncl.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":"2018-04-17T20:37:16.000Z","updated_at":"2019-03-17T22:22:24.000Z","dependencies_parsed_at":null,"dependency_job_id":"218ae5e7-0bef-42fd-b333-dfc102ad2e68","html_url":"https://github.com/milankyncl/flex-grid-framework","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/milankyncl/flex-grid-framework","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/milankyncl%2Fflex-grid-framework","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/milankyncl%2Fflex-grid-framework/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/milankyncl%2Fflex-grid-framework/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/milankyncl%2Fflex-grid-framework/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/milankyncl","download_url":"https://codeload.github.com/milankyncl/flex-grid-framework/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/milankyncl%2Fflex-grid-framework/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31736723,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-12T22:19:12.206Z","status":"ssl_error","status_checked_at":"2026-04-12T22:18:33.088Z","response_time":58,"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":["css","flex","flexbox","framework","framework-css","grid","scss"],"created_at":"2024-11-22T19:23:50.507Z","updated_at":"2026-04-13T01:33:38.202Z","avatar_url":"https://github.com/milankyncl.png","language":"CSS","readme":"# Flex Grid Framework\n\nSuper minimalistic CSS (SCSS) flex grid framework for easy manipulation with responsive-friendly websites.\n\n## Configuring\n\nJust before including SCSS source file, you are able to define your own configuration of grid layout system. Variables are listed here:\n\n**$columns**\n\nMax. number of columns\n```\ndefault: 24\noptions: number\n```\n\n**$columnsGasp**\n\nGasp between columns in grid\n```\ndefault: 1rem\noptions: mixed (number of px/rem/em etc.)\n```\n\n**$indentation**\n\nMax. number of margin/padding indentation\n```\ndefault: 10\noptions: number\n```\n\n**$breakpoints**\n\nBreakpoints definition. You can define your own names and use them later.\n```\ndefault: (\n    lg: 1440px,\n    md: 1024px,\n    sm: 768px,\n    xs: 560px\n)\noptions: list\n```\n\n## How to use\n\n### Rows\n\nRows are used to wrapper columns using `row` class you cant set up row and write down columns in. There is a plenty of modifications for rows:\n\n**Vertical aligning**\n\n- `row--v-center` - columns will be centered vertically,\n- `row--v-top` - columns will be aligned to top vertically, (defaultly)\n- `row--v-bottom` - columns will be aligned to bottom vertically,\n- `row--stretch` - columns will be centered vertically and they will have same height,\n\n**Horizontal aligning**\n\n- `row--h-center` - columns will be centered horizontally,\n- `row--h-left` - columns will be aligned left horizontally, (defaultly)\n- `row--h-right` - columns will be aligned right horizontally,\n- `row--space-between` - columns will be separated with spaces between,\n- `row--space-around` - every columns will be separated by space (event at sides of row)\n\n**Wrapping**\n\n- `row--wrap-reverse` - row will wrap with reversed order\n- `row--nowrap` - row will not wrap at all\n\nExample:\n\n```html\n\u003cdiv class=\"row row--v-top\"\u003e\n    \u003cdiv class=\"col\"\u003e\n        Column with auto-width.\n    \u003c/div\u003e\n    \u003cdiv class=\"col col--5\"\u003e\n        Column with size of 5 units.\n    \u003c/div\u003e\n    \u003cdiv class=\"col col--fill\"\u003e\n        Column filling the remaining width.\n    \u003c/div\u003e\n\u003c/div\n\n```\n\n### Columns\n\nThere are 2 ways how to create columns in your code:\n\n- Using a mixin which provides an option to define size of the column depending on breakpoint\n\n    ```css\n    @include column($size, $breakpointName) // e.g. column(5, 'lg')\n    ```\n\n- Using a builded classes by `col--{$size}` and with breakpoint `col--{$breakpointName}-{$size}`. If you wish to use predefined column attributes (padding, box-sizing) you need to add `col` class to your element. To fill remaining width of row you can use `col--fill` class.\n\n    ```html\n    \u003cdiv class=\"row\"\u003e\n        \u003cdiv class=\"col col--20 col--md-18 col--xs-16\"\u003ePredefined width!\u003c/div\u003e\n        \u003cdiv class=\"col col--fill\"\u003eWill fill the rest of width...\u003c/div\u003e\n    \u003c/div\u003e\n    ```\n\n## License\n\nReleased under the MIT license - http://opensource.org/licenses/MIT","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmilankyncl%2Fflex-grid-framework","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmilankyncl%2Fflex-grid-framework","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmilankyncl%2Fflex-grid-framework/lists"}