plasttic-reset
v2.1.0
Published
Plasttic CSS Reset: A CSS Reset styling for browser consistency with best practices defaults
Downloads
64
Maintainers
Readme
Plasttic CSS Reset
A CSS Reset styling for browser consistency with best practices defaults.
About
Plasttic CSS Reset creates a clean and stripped foundation to develop an accessible, responsive and robust interface by applying your design system on a blank canvas.
- Removes browser inconsistencies.
- Resets properties for easier and more predictable styling results.
- Improves accessibility through best practices values.
- Uses :where() to allow overrides without specificity issues.
- Offers custom properties to change some of the default values.
Demo page
- https://codepen.io/tojeiro/pen/mdzYVjP?editors=1100
Start
From CDN (HTML page)
<link rel="stylesheet" href="https://unpkg.com/[email protected]" />
From CDN (CSS file)
@import "https://unpkg.com/[email protected]";
Installation
:warning: NOTE: Installing is not recommended for production. Properties can be added or modified in later versions. If you update the project dependencies, the new version can break your layout.
- Install package
npm i plasttic-reset
- Import in the CSS file
@import "plasttic-reset";
Download
- Download Zip
https://github.com/tojeiro-me/Plasttic-reset/archive/refs/heads/master.zip
unzip file
- In the HTML page (no automatic update)
<link rel="stylesheet" href="/path-to-file/reset.min.css" />
Check the CHANGELOG for version changes.
Customize
The typography default values are based on the W3C recommendations. However he fonts used and their sizes can have a considerable impact.
The focus color is intended for users navigating using the keyboard or assistive technologies.
This properties can be changed globally - using the :root
pseudo-class - or scoped
- inside the tag or class in which you want to override the default values.
:root {
/* Focus style color */
--ptt-reset-focus-color: hsl(26 86% 61%); /* replace with brand/accent color, ... */
/* The next properties best values depends on the font used */
--ptt-reset-body-line-height: 1.45; /* 1.4 to 1.6 */
--ptt-reset-body-width: 65ch; /* 50ch to 80ch - h5, h6, p, li */
--ptt-reset-body-spacing: 0.012em; /* letter spacing */
--ptt-reset-header-line-height: 1.1; /* 1 to 1.2 - h1, h2, h3, h4 */
--ptt-reset-h1-width: 30ch;
--ptt-reset-h2-width: 35ch;
--ptt-reset-h3-width: 45ch;
--ptt-reset-h4-width: 55ch;
/* Better spacing between content */
--ptt-reset-content-space-top: 0.5em;
--ptt-reset-header-space-bottom: 0.75em; /* h1, h2, h3, h4 */
--ptt-reset-header-space-top: 2em; /* h2, h3, h4 -- h1: not inside header with role=banner */
}
Notes
Styling file upload button
input[type='file']::-webkit-file-upload-button,
input[type='file']::file-selector-button {
/* styling properties */
}
Lists
Apply the role=list when styling lists (ul/ol) with list-style=none so it doesn't loose its semantic value on safari.
ul {
list-style: none;
}
<ul role="list">
Developer
- Repository
- https://github.com/tojeiro-me/Plasttic-reset
- CSS Files:
- Minified: dist/reset.min.css
- Source: src/reset.css
- Config files
- Supported Browsers: .browserslistrc (https://browsersl.ist/)
- PostCSS preset-env stage: postcss.config.cjs (https://github.com/csstools/postcss-preset-env#stage)
- Repository
- Clone repository
git clone https://github.com/tojeiro-me/Plasttic-reset.git
- Install dependencies
npm install
- Parse and Minimize source to dist (reset.min.css)
npm run dist
Inspired by the work of:
- Andy Bell @piccalilli_
- https://piccalil.li/blog/a-modern-css-reset/
- Comeau @JoshWComeau
- https://www.joshwcomeau.com/css/custom-css-reset/
- Adam Argyle @argyleink
- https://codepen.io/argyleink/pen/KKvRORE
- Ahmad Shadeed @shadeed9
- https://defensivecss.dev/
"Credit where credit is due!"
Follow
License