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

joshxfi/css-maid

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 

Repository files navigation

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;
  }

About

🧹 A tool made to clean up CSS default styling! Give your CSS a nice reset and style with less hassle!

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages