{"id":52135499,"url":"https://github.com/morevm/css","last_synced_at":"2026-08-05T23:01:43.159Z","repository":{"id":373179079,"uuid":"1310372807","full_name":"MorevM/css","owner":"MorevM","description":"Modern CSS foundation","archived":false,"fork":false,"pushed_at":"2026-07-26T00:46:07.000Z","size":276,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-07-26T02:10:39.671Z","etag":null,"topics":["css","css-reset"],"latest_commit_sha":null,"homepage":"https://morevm.github.io/css/playground/","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/MorevM.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE.md","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":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-07-23T21:14:48.000Z","updated_at":"2026-07-26T00:46:00.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/MorevM/css","commit_stats":null,"previous_names":["morevm/css"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/MorevM/css","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MorevM%2Fcss","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MorevM%2Fcss/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MorevM%2Fcss/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MorevM%2Fcss/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MorevM","download_url":"https://codeload.github.com/MorevM/css/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MorevM%2Fcss/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":36323912,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-07-20T02:08:10.276Z","status":"online","status_checked_at":"2026-08-05T02:00:06.619Z","response_time":104,"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":"2026-08-05T23:01:39.371Z","updated_at":"2026-08-05T23:01:43.135Z","avatar_url":"https://github.com/MorevM.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cimg src=\"./.github/images/banner.svg\" alt=\"Promotional image of @morev/stylelint-plugin package\" width=\"830\" height=\"465\" /\u003e\n\n![Stability of \"master\" branch](https://img.shields.io/github/actions/workflow/status/MorevM/css/build.yaml?branch=master)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n![Last commit](https://img.shields.io/github/last-commit/morevm/css)\n![Release version](https://img.shields.io/github/v/release/morevm/css?include_prereleases)\n![GitHub Release Date](https://img.shields.io/github/release-date/morevm/css)\n![Keywords](https://img.shields.io/github/package-json/keywords/morevm/css)\n\n# @morev/css\n\nA modern CSS foundation for projects whose entire visual layer is controlled by a design system.\n\n`@morev/css` removes browser presentation to provide a neutral canvas while\npreserving semantics, appropriate display modes, and essential native behavior.\n\n## Installation\n\n```sh\npnpm add @morev/css\n```\n\n## Structure\n\nThe foundation is split into three stylesheets:\n\n- [`core.css`](./src/reset/core.css) removes user-agent presentation and normalizes browser differences.\n- [`base.css`](./src/reset/base.css) adds design-system-ready defaults for typography, layout, and interaction.\n- [`reduced-motion.css`](./src/reset/reduced-motion.css) optionally applies a strict reduced-motion policy.\n\nThe required `core` and `base` stylesheets are also available together as `reset.css`. \\\nAll selected stylesheets must come before the design-system styles.\n\n## Cascade layers\n\nThe distributed stylesheets intentionally do not declare an `@layer`.\nElement selectors are wrapped in `:where()` so they add no specificity;\nthis preserves the expected cascade in projects that do not use layers.\n\n## Usage\n\n```css\n@layer reset, design-system;\n\n@import '@morev/css/reset/core.css' layer(reset);\n@import '@morev/css/reset/base.css' layer(reset);\n\n/* Optional */\n@import '@morev/css/reset/reduced-motion.css' layer(reset);\n\n@import './design-system.css' layer(design-system);\n```\n\nUsing cascade layers is optional. Import the selected stylesheets before the design-system styles directly:\n\n```css\n@import '@morev/css/reset.css';\n\n/* Optional */\n@import '@morev/css/reset/reduced-motion.css';\n\n@import './design-system.css';\n```\n\n## Browser support\n\nThe package targets the moving [Baseline Widely Available](https://web.dev/baseline/) window\nand keeps compatibility rules until the corresponding native behavior has been available\nacross the Baseline browser set for at least 30 months.\n\n## Playground\n\nThe [`playground`](https://morevm.github.io/css/playground/) compares native and reset rendering\nside by side and documents the behavior of every stylesheet.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmorevm%2Fcss","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmorevm%2Fcss","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmorevm%2Fcss/lists"}