{"id":19184928,"url":"https://github.com/codyhouse/codyframe","last_synced_at":"2025-04-05T04:08:55.495Z","repository":{"id":65940063,"uuid":"600005138","full_name":"codyhouse/codyframe","owner":"codyhouse","description":"The intuitive CSS framework.","archived":false,"fork":false,"pushed_at":"2025-01-24T12:32:51.000Z","size":106,"stargazers_count":68,"open_issues_count":1,"forks_count":9,"subscribers_count":9,"default_branch":"main","last_synced_at":"2025-03-29T03:03:01.352Z","etag":null,"topics":["css","css-framework","framework","html","responsive","sass","scss","utility-classes"],"latest_commit_sha":null,"homepage":"https://codyhouse.co","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/codyhouse.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":"2023-02-10T11:18:35.000Z","updated_at":"2025-03-04T09:21:38.000Z","dependencies_parsed_at":"2025-03-29T03:13:10.381Z","dependency_job_id":null,"html_url":"https://github.com/codyhouse/codyframe","commit_stats":null,"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codyhouse%2Fcodyframe","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codyhouse%2Fcodyframe/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codyhouse%2Fcodyframe/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codyhouse%2Fcodyframe/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codyhouse","download_url":"https://codeload.github.com/codyhouse/codyframe/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247284943,"owners_count":20913704,"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","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","css-framework","framework","html","responsive","sass","scss","utility-classes"],"created_at":"2024-11-09T11:08:49.045Z","updated_at":"2025-04-05T04:08:55.482Z","avatar_url":"https://github.com/codyhouse.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CodyFrame\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://codyhouse.co/ds/docs/framework\"\u003e\n    \u003cimg src=\"https://raw.githubusercontent.com/codyhouse/codyframe/master/main/img/logo.png\" alt=\"CodyHouse logo\" width=\"100\" height=\"100\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  The intuitive CSS framework\n\u003c/p\u003e\n\n## Quick start\n\nIf you prefer working with SASS, create a style.scss file and import the CodyFrame files:\n\n```scss\n@use 'reset'; // ← reset\n@use 'config' as *; // ← customize the framework\n\n// ↓ copy \u0026 modify these templates locally\n@use 'typography';\n@use 'icons';\n@use 'buttons';\n@use 'forms';\n\n// ↓ import here the CodyHouse components\n@use 'components/_1_header' as *;\n@use 'components/_1_footer' as *;\n// ...\n\n@use 'util'; // ← utility classes\n````\n\nThe **_config.scss** file is used to customize the framework (i.e., to edit the breakpoints or to change the spacing scale).\n\nExample:\n\n```scss\n@use 'reset';\n@use 'config' as * with (\n  $breakpoints: (\n    'sm': '48rem',\n    'md': '64rem',\n    'lg': '80rem'\n  ),\n  $font-family: (\n    'primary': 'Inter, system-ui, sans-serif'\n  ),\n  $font-size: (\n    'sm': '0.8125rem',\n    'base': '1rem',\n    'md': '1.1875rem',\n    'lg': '1.4375rem',\n    '2xl': '2.0625rem'\n  )\n);\n\n// ...\n```\n\nCheck the [documentation](https://codyhouse.co/ds/docs/framework) for a full list of configuration options.\n\nIf you prefer working with CSS (without a preprocessor):\n\n```css\n@import 'https://unpkg.com/codyframe/main/css/reset.css'; /* ← reset */\n\n/* ↓ copy \u0026 modify these templates locally */\n@import 'typography.css';\n@import 'icons.css';\n@import 'buttons.css';\n@import 'forms.css';\n\n/* ↓ import here the CodyHouse components */\n@import 'components/_1_header.css';\n@import 'components/_1_footer.css';\n/* ... */\n\n@import 'https://unpkg.com/codyframe/main/css/util.css'; /* ← utility classes */\n```\n\nTo install the node module:\n\n```sh\n# using npm\nnpm i codyframe\n\n# using Yarn\nyarn add codyframe\n```\n\nIf you install CodyFrame as npm module, import the reset, config, and util modules from the node package:\n\n```scss\n@use '../../../node_modules/codyframe/main/scss/reset';\n@use '../../../node_modules/codyframe/main/scss/config' as *;\n\n// ↓ copy \u0026 modify these templates locally\n@use 'typography';\n@use 'icons';\n@use 'buttons';\n@use 'forms';\n\n// ↓ import here the CodyHouse components\n@use 'components/_1_header' as *;\n@use 'components/_1_footer' as *;\n// ...\n\n@use '../../../node_modules/codyframe/main/scss/util';\n```\n\n## Documentation\n\nExplore the full documentation on [codyhouse.co →](https://codyhouse.co/ds/docs/framework)\n\n## Components\n\nCodyHouse's components are accessible, progressively enhanced, HTML, CSS, JS components that work seamlessly with CodyFrame.\n\n[Explore the components →](https://codyhouse.co/ds/components)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodyhouse%2Fcodyframe","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodyhouse%2Fcodyframe","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodyhouse%2Fcodyframe/lists"}