{"id":15112247,"url":"https://github.com/collin-scott12/fluidesign","last_synced_at":"2026-01-19T11:32:20.486Z","repository":{"id":143804031,"uuid":"240073823","full_name":"collin-scott12/fluidesign","owner":"collin-scott12","description":"A design system that scales content proportionally to any screen size. Truly fluid.","archived":false,"fork":false,"pushed_at":"2020-05-05T14:01:49.000Z","size":26,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-11-24T03:13:58.354Z","etag":null,"topics":["css","framework","javascript","sass","sass-framework","scss"],"latest_commit_sha":null,"homepage":"","language":"HTML","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/collin-scott12.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-02-12T17:32:43.000Z","updated_at":"2020-05-05T14:01:24.000Z","dependencies_parsed_at":"2024-01-29T14:02:09.239Z","dependency_job_id":null,"html_url":"https://github.com/collin-scott12/fluidesign","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/collin-scott12/fluidesign","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/collin-scott12%2Ffluidesign","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/collin-scott12%2Ffluidesign/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/collin-scott12%2Ffluidesign/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/collin-scott12%2Ffluidesign/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/collin-scott12","download_url":"https://codeload.github.com/collin-scott12/fluidesign/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/collin-scott12%2Ffluidesign/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28566403,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-19T08:53:44.001Z","status":"ssl_error","status_checked_at":"2026-01-19T08:52:40.245Z","response_time":67,"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","framework","javascript","sass","sass-framework","scss"],"created_at":"2024-09-26T00:43:14.569Z","updated_at":"2026-01-19T11:32:20.468Z","avatar_url":"https://github.com/collin-scott12.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Fluidesign\n\nA design system that scales content proportionally to any screen size.\nThat means no more breakpoints, no more hacking code, and no more confusion from design to development. Fluidesign is design generated, development automated, and carefully perfected to make use of the most universal design concepts and CSS technology.\nAnd, it's IE11 compatible. :smirk:\n\nFluidesign uses a 12 column grid system with flexboxes and fluid typography to create a fully responsive fluid framework built entirely with the power of Sass. No Javascript involved!\n\n**_Still in early testing._**\nContact me if you have questions or comments! Let's change the way we design and develop applications for the better.\n\n# Table of Contents\n\n- [Requirements](#requirements)\n- [Path](#path)\n- [Documentation](#documentation)\n  - [Typography](#typography)\n  - [Grid](#grid)\n- [Copyright and License](#copyright-license)\n\nFirst, build a row using the `row` class as a wrapper.\nThen add the number of columns based on how many columns you want in your 12 column grid.\n\n## Requirements\n\nFluidesign was built using the style preprocessor [Sass](https://sass-lang.com) and requires Sass to work properly.\n\n## Path\n\n```\nfluidesign/\n├── fluidesign.sass\n└── sass/\n    ├── _columns.sass\n    ├── _typography.sass\n    └── _variables.sass\n```\n\n## Documentation\n\n### Typography\n\n##### To Use:\n\nAdd this code snippet to your sass file when declaring a font size. Replace minFontSize with your minimum font size (mobile) and maxFontSize with your maximum font size (desktop). Fluidesign will do the rest to determine what size your font should be for any screen size.\n\n`@include fluid-type(minFontSize, maxFontSize)`\n\n### Grid\n\n`column-one` : 1 column row\n_Example:_\n\n```\n\u003cdiv class=\"row\"\n  \u003cdiv class=\"column-one\"\u003eColumn 1\u003c/div\u003e\n\u003c/div\u003e\n```\n\n`column-two` : 2 column row\n_Example:_\n\n```\n\u003cdiv class=\"row\"\n  \u003cdiv class=\"column-two\"\u003eColumn 1\u003c/div\u003e\n  \u003cdiv class=\"column-two\"\u003eColumn 2\u003c/div\u003e\n\u003c/div\u003e\n```\n\n`column-three` : 3 column row\n_Example:_\n\n```\n\u003cdiv class=\"row\"\n  \u003cdiv class=\"column-three\"\u003eColumn 1\u003c/div\u003e\n  \u003cdiv class=\"column-three\"\u003eColumn 2\u003c/div\u003e\n  \u003cdiv class=\"column-three\"\u003eColumn 3\u003c/div\u003e\n\u003c/div\u003e\n```\n\n`column-four` : 4 column row\n_Example:_\n\n```\n\u003cdiv class=\"row\"\n  \u003cdiv class=\"column-four\"\u003eColumn 1\u003c/div\u003e\n  \u003cdiv class=\"column-four\"\u003eColumn 2\u003c/div\u003e\n  \u003cdiv class=\"column-four\"\u003eColumn 3\u003c/div\u003e\n  \u003cdiv class=\"column-four\"\u003eColumn 4\u003c/div\u003e\n\u003c/div\u003e\n```\n\n`column-six` : 6 column row\n_Example:_\n\n```\n\u003cdiv class=\"row\"\n  \u003cdiv class=\"column-six\"\u003eColumn 1\u003c/div\u003e\n  \u003cdiv class=\"column-six\"\u003eColumn 2\u003c/div\u003e\n  \u003cdiv class=\"column-six\"\u003eColumn 3\u003c/div\u003e\n  \u003cdiv class=\"column-six\"\u003eColumn 4\u003c/div\u003e\n  \u003cdiv class=\"column-six\"\u003eColumn 5\u003c/div\u003e\n  \u003cdiv class=\"column-six\"\u003eColumn 6\u003c/div\u003e\n\u003c/div\u003e\n```\n\n`column-twelve` : 12 column row\n_Example:_\n\n```\n\u003cdiv class=\"row\"\n  \u003cdiv class=\"column-twelve\"\u003eColumn 1\u003c/div\u003e\n  \u003cdiv class=\"column-twelve\"\u003eColumn 2\u003c/div\u003e\n  \u003cdiv class=\"column-twelve\"\u003eColumn 3\u003c/div\u003e\n  \u003cdiv class=\"column-twelve\"\u003eColumn 4\u003c/div\u003e\n  \u003cdiv class=\"column-twelve\"\u003eColumn 5\u003c/div\u003e\n  \u003cdiv class=\"column-twelve\"\u003eColumn 6\u003c/div\u003e\n  \u003cdiv class=\"column-twelve\"\u003eColumn 7\u003c/div\u003e\n  \u003cdiv class=\"column-twelve\"\u003eColumn 8\u003c/div\u003e\n  \u003cdiv class=\"column-twelve\"\u003eColumn 9\u003c/div\u003e\n  \u003cdiv class=\"column-twelve\"\u003eColumn 10\u003c/div\u003e\n  \u003cdiv class=\"column-twelve\"\u003eColumn 11\u003c/div\u003e\n  \u003cdiv class=\"column-twelve\"\u003eColumn 12\u003c/div\u003e\n\u003c/div\u003e\n```\n\n## Copyright and license\n\nCode and documentation copyright 2020 [collinscott](http://www.collinscott.com), released under the MIT License. Docs released under Creative Commons.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcollin-scott12%2Ffluidesign","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcollin-scott12%2Ffluidesign","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcollin-scott12%2Ffluidesign/lists"}