2.0.1 • Published 3 years ago

css-maid v2.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

CSS Maid 🧹

npm.io npm.io npm.io

What is it?

CSS Maid is a tool for that helps clean up & reset default css! It resets default padding & margin, remove text-decoration on anchor tag, and many more!

Installation

# install with npm
npm i css-maid

# install with yarn
yarn add css-maid

Quick Start

  • HTML via CDN
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/css-maid@2.0.0/Maid.min.css" />

  • React.js
import "css-maid";

const App = () => {
  return (
    <div>
      <h1>Yes, it's that easy!</h1>
    </div>
  );
};

export default App;

Features

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    font-family: inherit;
    vertical-align: baseline;
    font-size: 100%;
  }
  
  a {
    text-decoration: none;
  }
  
  ol,
  ul {
    list-style: none;
  }
  
  input,
  textarea {
    outline: none;
  }
  
  textarea {
    resize: none;
  }
2.0.1

3 years ago

1.1.0

3 years ago

2.0.0

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago