{"id":15319110,"url":"https://github.com/zoontek/wff","last_synced_at":"2025-08-11T22:35:43.865Z","repository":{"id":16867309,"uuid":"19627590","full_name":"zoontek/wff","owner":"zoontek","description":"An extend based semantic grid for Sass","archived":false,"fork":false,"pushed_at":"2016-08-07T23:04:51.000Z","size":33,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-01T05:17:10.977Z","etag":null,"topics":[],"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/zoontek.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-05-09T22:29:47.000Z","updated_at":"2016-08-07T23:04:36.000Z","dependencies_parsed_at":"2022-08-25T12:00:31.230Z","dependency_job_id":null,"html_url":"https://github.com/zoontek/wff","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/zoontek/wff","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zoontek%2Fwff","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zoontek%2Fwff/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zoontek%2Fwff/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zoontek%2Fwff/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zoontek","download_url":"https://codeload.github.com/zoontek/wff/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zoontek%2Fwff/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269969212,"owners_count":24505425,"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-08-11T02:00:10.019Z","response_time":75,"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":[],"created_at":"2024-10-01T09:03:45.643Z","updated_at":"2025-08-11T22:35:43.837Z","avatar_url":"https://github.com/zoontek.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"## WFF (Waiting For Flexbox)\n\nWFF is an old-fashioned grid system built with Sass, the child of \"old-school\" css grids and new semantic ones. Based on a massive @extend logic, it has been designed to have a small footprint on relatively large projects. It's also support infinite nesting and column shifting.\n\n## Requirements\n\n- Sass 3.3+\n\n## Another one? What's make this one different?\n\nCurrently, if you choose a \"semantic\" grid system and have watched the generated CSS a little, you maybe noticed that your framework generally doesn't respect the \"DRY\" philosophy, generate huge code repetition.\n\n```sass\n// Example using a classic semantic grid system\n\n.first {\n  @include column;\n}\n\n.second {\n  @include column;\n}\n\n.third {\n  @include column(2);\n}\n```\n```css\n/* Generated CSS */\n\n.first {\n  float: left;\n  width: 7.1875%;\n  margin-right: 3.125%;\n}\n\n.second {\n  float: left;\n  width: 7.1875%;\n  margin-right: 3.125%;\n}\n\n.third {\n  float: left;\n  width: 17.5%;\n  margin-right: 3.125%;\n}\n```\n\n***\n\nBut because wff use massively Sass @extend directive, it is able to produce this:\n\n```sass\n// Example using wff grid system\n\n@include placeholders;\n\n.first {\n  @include column;\n}\n\n.second {\n  @include column;\n}\n\n.third {\n  @include column(2);\n}\n```\n```css\n/* Generated CSS */\n\n.first, .second {\n  width: 7.1875%;\n}\n\n.third {\n  width: 17.5%;\n}\n\n.first, .second, .third {\n  float: left;\n  margin-right: 3.125%;\n}\n```\n\nSlightly better, no? Check out [the wiki](https://github.com/zoontek/wff/wiki) to find more.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzoontek%2Fwff","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzoontek%2Fwff","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzoontek%2Fwff/lists"}