Skip to content
This repository has been archived by the owner on Aug 31, 2022. It is now read-only.

Latest commit

History

History
78 lines (60 loc) 路 1.49 KB

README.md

File metadata and controls

78 lines (60 loc) 路 1.49 KB

CSS Maid 馃Ч

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/[email protected]/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;
  }