# @mark/css > CSS reset and utility styles for the Mark Design System ## Installation ```bash # npm npm install @mark/css # pnpm pnpm add @mark/css # yarn yarn add @mark/css ``` ## Usage Import the CSS reset in your application: ```javascript // Import all styles import '@mark/css'; // Or import reset specifically import '@mark/css/reset.css'; ``` ## Features ### Reset The reset CSS provides a consistent base styling across browsers by: - Removing default margins and paddings - Setting box-sizing to border-box - Normalizing typography - Removing default list styles - Standardizing form elements ## Development ### Building ```bash turbo build ``` This will: 1. Clean the dist directory 2. Copy CSS files to dist 3. Generate type definitions ## Contributing When modifying styles: 1. Keep changes minimal and well-documented 2. Test across major browsers 3. Consider accessibility implications 4. Update documentation as needed