{"id":20098288,"url":"https://github.com/zemd/css-reset","last_synced_at":"2026-06-12T14:32:51.049Z","repository":{"id":224313130,"uuid":"762989455","full_name":"zemd/css-reset","owner":"zemd","description":"Simple and minimal CSS reset for modern web development.","archived":false,"fork":false,"pushed_at":"2026-06-08T08:43:57.000Z","size":166,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-06-08T10:23:46.567Z","etag":null,"topics":["css","css-reset"],"latest_commit_sha":null,"homepage":"","language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zemd.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-02-25T09:01:14.000Z","updated_at":"2026-06-08T08:44:02.000Z","dependencies_parsed_at":null,"dependency_job_id":"8267082f-ea36-428a-80ff-124947aa3d85","html_url":"https://github.com/zemd/css-reset","commit_stats":null,"previous_names":["zemd/css-reset"],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/zemd/css-reset","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zemd%2Fcss-reset","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zemd%2Fcss-reset/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zemd%2Fcss-reset/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zemd%2Fcss-reset/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zemd","download_url":"https://codeload.github.com/zemd/css-reset/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zemd%2Fcss-reset/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34249560,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-12T02:00:06.859Z","response_time":109,"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":["css","css-reset"],"created_at":"2024-11-13T17:02:38.612Z","updated_at":"2026-06-12T14:32:51.028Z","avatar_url":"https://github.com/zemd.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# @zemd/css-reset\n\n[![npm](https://img.shields.io/npm/v/@zemd/css-reset?color=0000ff\u0026label=npm\u0026labelColor=000)](https://npmjs.com/package/@zemd/css-reset)\n\nA small CSS reset for modern projects. It gives you a clean starting point without locking you into any design system.\n\n## What it does\n\nThe main reset (`index.css`) handles the basics:\n\n- Sets `box-sizing: border-box` on all elements\n- Removes default margins and paddings (keeps them on headings, paragraphs, and lists)\n- Sets sensible defaults for font rendering, kerning, and ligatures\n- Wraps headings with `text-wrap: balance` and paragraphs with `text-wrap: pretty`\n- Makes images, SVGs, and videos responsive\n- Normalizes form elements, tables, and links\n- Enables `scroll-behavior: smooth` when the user has no motion preference\n- and more\n\n## Install\n\n```sh\nnpm install @zemd/css-reset\npnpm add @zemd/css-reset\n```\n\n## Files\n\nAll exports are plain CSS. Pick what you need.\n\n| File                         | What it does                                                        |\n| ---------------------------- | ------------------------------------------------------------------- |\n| `@zemd/css-reset/index.css`  | Main reset - start here                                             |\n| `@zemd/css-reset/extra.css`  | Pointer cursors for clickable elements, underlines for inline links |\n| `@zemd/css-reset/quotes.css` | Language-aware quote marks                                          |\n| `@zemd/css-reset/all.css`    | Everything above in one import                                      |\n\n\u003e **Tip:** You can also import without the `.css` extension, e.g. `@zemd/css-reset/extra`.\n\n\u003e **Note:** The main reset sets English-only default quotes on `:where(html, :host)`. If you use `quotes.css`, make sure it's imported **after** `index.css` so the language-specific overrides take effect.\n\n## Usage\n\n### Basic\n\n```css\n@import \"@zemd/css-reset/index.css\";\n\n/* If your tooling supports it, this shorter form also works: */\n@import \"@zemd/css-reset\";\n\n/* Layers keep your reset clearly separated from your app and component styles: */\n@layer reset;\n@import \"@zemd/css-reset/index.css\" layer(reset);\n```\n\n### Everything at once\n\nIf you want the full reset with all optional files included:\n\n```css\n@import \"@zemd/css-reset/all.css\";\n\n/* Or with a layer: */\n@layer reset;\n@import \"@zemd/css-reset/all.css\" layer(reset);\n```\n\n### Picking individual files\n\n```css\n@layer reset;\n\n@import \"@zemd/css-reset/index.css\" layer(reset);\n@import \"@zemd/css-reset/extra.css\" layer(reset);\n@import \"@zemd/css-reset/quotes.css\" layer(reset);\n```\n\n## Using with Tailwind v4\n\nSkip Tailwind Preflight so the two resets don't overlap:\n\n```css\n@layer theme, reset, components, utilities;\n\n@import \"tailwindcss/theme.css\" layer(theme);\n@import \"@zemd/css-reset/index.css\" layer(reset);\n@import \"tailwindcss/utilities.css\" layer(utilities);\n```\n\nAdd any optional files to the same `reset` layer.\n\n## License\n\nReleased under the Apache 2.0 license.\n\n## Support\n\n[![](https://img.shields.io/static/v1?label=UNITED24\u0026message=support%20Ukraine\u0026color=blue)](https://u24.gov.ua/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzemd%2Fcss-reset","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzemd%2Fcss-reset","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzemd%2Fcss-reset/lists"}