Skip to content

aaronharinck/normalize-reset

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

normalize-reset

Custom css baseline styles

Table of Contents
  1. About The Project
  2. Getting Started
  3. Usage
  4. Contributing
  5. License
  6. Contact
  7. Acknowledgments

About The Project

The goal of a reset/normalize stylesheet is to reduce browser inconsistencies.

While browser inconsistencies have improved over the years, many of the most popular css normalize and css reset stylesheets have not updated in years.

This project is somewhat between a modern reset and normalize (mostly a normalize though), so I just named it normalize-reset ¯\__(ツ)__/¯

Normalize-reset was created by mixing other css-reset and css-normalize stylesheets (see acknowledgments) to cater to my own needs.

(back to top)

Getting Started

Getting started with normalize-reset should be fairly straightforward. Just follow these simple steps.

Installation

  1. Download the normalize-reset.css file

  2. Place the normalize-reset.css-file in your project folder or subfolder (e.g. /styles)

  3. Import normalize-reset.css BEFORE your main stylesheet (CSS: order of appearance)

    <!-- HTML -->
    <link rel="stylesheet" href="yourPath/normalize-reset.css" />
    <link rel="stylesheet" href="yourPath/style.css" />

    or

    /* JavaScript */
    import "yourPath/normalize-reset.css";
    import "yourPath/style.css";

(back to top)

Usage

Make sure to have your own styles imported after the normalize-reset.css import. The normalize-reset is just a starting point, feel free to overwrite the styles when needed in your main stylesheet.

(back to top)

Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

(back to top)

License

Distributed under the MIT License. See LICENSE.txt for more information.

(back to top)

Contact

Project Link: https://github.com/aaronharinck/normalize-reset

(back to top)

Acknowledgments

(back to top)

Releases

No releases published

Packages

No packages published

Languages