# reset-css-dogmatic

> A modified and dogmatic version of Eric Meyer's CSS reset. PostCSS, webpack, Sass, and Less friendly.

Latest version **1.0.4** (published 2019-04-10) · Unlicense license · 0 weekly downloads

## Install

```sh
npm install reset-css-dogmatic
pnpm add reset-css-dogmatic
yarn add reset-css-dogmatic
bun add reset-css-dogmatic
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.4 |
| Published | 2019-04-10 |
| First published | 2018-11-16 |
| Weekly downloads | 0 |
| License | Unlicense |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 103.1 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | renatocarvalho |
| Maintainers | renatocarvalho |

## Links

- npm: https://www.npmjs.com/package/reset-css-dogmatic
- Repository: https://github.com/startae/reset-css-dogmatic
- Issues: https://github.com/startae/reset-css-dogmatic/issues
- npm.io page: https://npm.io/package/reset-css-dogmatic

## Recent versions

- 1.0.4 (latest) — 2019-04-10
- 1.0.3 — 2019-03-26
- 1.0.2 — 2018-11-16
- 1.0.1 — 2018-11-16
- 0.0.1-security — 2018-11-16

## README

# reset.css

A **modified and dogmatic** version of Eric Meyer's [CSS reset](https://meyerweb.com/eric/tools/css/reset/). PostCSS, webpack, Sass, and Less friendly.

## Install

With curl:

```command
$ curl -O "https://unpkg.com/reset-css-dogmatic@1.0.4/reset.css"
$ curl -O "https://unpkg.com/reset-css-dogmatic@1.0.4/sass/_reset.scss"
$ curl -O "https://unpkg.com/reset-css-dogmatic@1.0.4/less/reset.less"
```

With [NPM](http://npmjs.com):

```command
$ npm install --save reset-css-dogmatic
```

With [Yarn](https://yarnpkg.com):

```command
$ yarn add reset-css-dogmatic
```

With [Bower](http://bower.io):

```command
$ bower install reset-css-dogmatic
```

## Usage

HTML:

```html
<link rel="stylesheet" href="/path/to/reset-css-dogmatic/reset.css" />
```

CSS:

```css
@import '/path/to/reset-css-dogmatic/reset.css';
```

Via PostCSS and [postcss-import](https://github.com/postcss/postcss-import):

```css
@import 'reset-css-dogmatic';
```

Via webpack and [css-loader](https://github.com/webpack-contrib/css-loader):

```js
import 'reset-css-dogmatic';
```

Via Sass:

```scss
@import '/path/to/reset-css-dogmatic/sass/reset';
```

Via Less:

```less
@import '/path/to/reset-css-dogmatic/less/reset';
```

---
_Source: https://npm.io/package/reset-css-dogmatic · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
