{"id":15041800,"url":"https://github.com/whitesmith/qnorr-styles","last_synced_at":"2026-01-21T16:01:45.979Z","repository":{"id":25680360,"uuid":"87561090","full_name":"whitesmith/qnorr-styles","owner":"whitesmith","description":"[WIP] A style agnostic, slightly opinionated, sass seasoning to bootstrap your projects","archived":false,"fork":false,"pushed_at":"2022-12-02T23:31:40.000Z","size":1980,"stargazers_count":3,"open_issues_count":27,"forks_count":0,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-12-27T08:47:32.846Z","etag":null,"topics":["bootstrap","css","css-framework","mixins","sass","scss","scss-framework","scss-library"],"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/whitesmith.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}},"created_at":"2017-04-07T15:33:46.000Z","updated_at":"2019-11-29T19:34:16.000Z","dependencies_parsed_at":"2023-01-14T03:45:08.050Z","dependency_job_id":null,"html_url":"https://github.com/whitesmith/qnorr-styles","commit_stats":null,"previous_names":["whitesmith/qnorr-css"],"tags_count":15,"template":false,"template_full_name":null,"purl":"pkg:github/whitesmith/qnorr-styles","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whitesmith%2Fqnorr-styles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whitesmith%2Fqnorr-styles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whitesmith%2Fqnorr-styles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whitesmith%2Fqnorr-styles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/whitesmith","download_url":"https://codeload.github.com/whitesmith/qnorr-styles/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whitesmith%2Fqnorr-styles/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28635926,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-21T15:01:31.228Z","status":"ssl_error","status_checked_at":"2026-01-21T14:42:58.942Z","response_time":86,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["bootstrap","css","css-framework","mixins","sass","scss","scss-framework","scss-library"],"created_at":"2024-09-24T20:46:29.232Z","updated_at":"2026-01-21T16:01:45.957Z","avatar_url":"https://github.com/whitesmith.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Documentation\n\n\u003e If it’s not documented, it doesn’t exist. Documentation should become the default – an integrated part of the development process.\n\u003e — Miriam Suzanne\n\n[See full documentation](https://whitesmith.github.io/qnorr-styles/)\n\n## install\nInstall via `npm` or `yarn`.\n\n```shell\nyarn add @whitesmith/qnorr-styles\n```\n\n\n## usage\n\n**at your `{main,index,app}.scss`**\n```scss\n@import \"path/to/node_modules/@whitesmith/qnorr-styles/scss/qnorr\";\n\n// or if your using a bundler with alias for node_modules (webpack / parcel)\n@import \"~@whitesmith/qnorr-styles/scss/qnorr\";\n\n// if your using node_sass and defined a custom importer or includePaths\n@import \"@whitesmith/qnorr-styles/scss/qnorr\";\n```\n\n**at your entry file `index.js`**\n```javascript\nimport \"@whitesmith/qnorr-styles\"; // this will import qnorr.css from dist/qnorr.css\n```\n\n\n## Customizing\nWant a custom flavour? Go the sassy way.\n\u003cdiv class=\"flash flash-warn\"\u003e\n  _\"~\" is an alias path to `node_modules` and can be different in your system_\n\u003c/div\u003e\n\n```scss\n////\n/// CONFIGURATION\n////\n\n// at your {main, index, app}.scss file all your config variables overrides;\n$qnorr-grid-columns-number: 10;\n\n// import settings to be overriden by the configuration above;\n@import \"~@whitesmith/qnorr-styles/scss/settings\";\n\n/////\n/// TOOLING\n///\n/// [1] - in perfect world this would also import qnorr-styles required dependencies\n/// (mappy-breakpoints), but we're not in a perfect world so check issue#10\n/// for why we decide to not include it by default for now\n///\n/// [2] - You can also import individual function and mixins, but then you have\n/// check their dependencies on documentation, since there's no output code\n/// it makes little sence to do it. It's possible. But not practical.\n////\n@import \"~mappy-breakpoints/_mappy-breakpoints\"; // [1] required\n@import \"~@whitesmith/qnorr-styles/scss/tools\"; //  [2] all functions and mixins\n\n\n////\n/// OOCSS MODULES\n///\n/// ready to use OOCSS elements, generated with your config\n/// [3] - Similar [1], not influenced by any configuration\n////\n\n@import \"~normalize.css/normalize.css\"; // [3]\n@import \"~@whitesmith/qnorr-styles/scss/global/_g.resets\";\n@import \"~@whitesmith/qnorr-styles/scss/objects/_o.media\";\n@import \"~@whitesmith/qnorr-styles/scss/objects/_o.grid\";\n@import \"~@whitesmith/qnorr-styles/scss/objects/_o.skeleton\";\n@import \"~@whitesmith/qnorr-styles/scss/utilities/_u.spacers\";\n@import \"~@whitesmith/qnorr-styles/scss/utilities/_u.widths\";\n@import \"~@whitesmith/qnorr-styles/scss/utilities/_u.text\";\n```\n\n\n## Dependencies\nqnorr ships with two dependencies by default:\n- [mappy-breakpoints (required)](https://github.com/zellwk/mappy-breakpoints) to handle our media query needs\n- [normalize.css (optional)](https://github.com/necolas/normalize.css/) to reset browser styles (optional import if you're using scss verison)\n\nNote: read more about [sass module dependency import issues here](https://github.com/whitesmith/qnorr-styles/issues/10);\n\n\n\n## Contributing\n\n- We use [gulp@4.0^](https://gulpjs.com/) to build the framework.\n- We use [sassdoc](https://sassdoc.com/) to build and generate documentation `/docs` folder. Head to the site to learn how to use it, or just check any source file for an example, you'll get it super fast. A pretty custom theme is possible but let's leave it for version 2.\n- We use [parcel](https://parceljs.org/) and [posthtml plugins](https://github.com/posthtml/posthtml) to build a basic site located under `/site` folder so you can play around with the framework.\n\n### Developing\n```\n# watch mode for qnorr will also start a server for documentation\nyarn run start\n```\n\n### Production build \n```\n# optimized output for publishing\nyarn run qnorr:build\n```\n\n### Play at playground site\n```\nyarn run playground:dev\n```\n\n### Testing \nWe do have unit tests for sass 🤓functions and mixins (thanks @tomasmcm). If you add any, pleas write your tests!Also thanks to @oddbird's [true](https://github.com/oddbird/true) and [jest](https://github.com/facebook/jest) for the tools to make it happen.\n\n```\nyarn run test\n```\n\n## License\n[MIT](LICENSE) — made with 💚 by [Whitesmith](https://whitesmith.co).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwhitesmith%2Fqnorr-styles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwhitesmith%2Fqnorr-styles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwhitesmith%2Fqnorr-styles/lists"}