All Projects → simbo → css-reset-and-normalize

simbo / css-reset-and-normalize

Licence: MIT license
A combination of css reset and normalize (available in CSS, SCSS, Stylus and LESS).

Programming Languages

SCSS
7915 projects

Projects that are alternatives of or similar to css-reset-and-normalize

Miracle Board
Just another simple and elegant status board / dashboard.
Stars: ✭ 217 (+985%)
Mutual labels:  less
Prejss
Get the power of PostCSS with plugins in your JSS styles. 🎨 Just put CSS into JS and get it as JSS object.
Stars: ✭ 238 (+1090%)
Mutual labels:  less
bioSyntax-archive
Syntax highlighting for computational biology
Stars: ✭ 16 (-20%)
Mutual labels:  less
Monokai
Monokai Atom Syntax theme
Stars: ✭ 226 (+1030%)
Mutual labels:  less
Vbuild
"Compile" your VueJS components (sfc/*.vue) to standalone html/js/css ... python only (no need of nodejs). Support python components too !
Stars: ✭ 236 (+1080%)
Mutual labels:  less
A Journey Toward Better Style
A Journey toward better style
Stars: ✭ 245 (+1125%)
Mutual labels:  less
Fontfamous
Font Famous is the free vector media logo font.
Stars: ✭ 213 (+965%)
Mutual labels:  less
website
Website source for Jikan.moe
Stars: ✭ 28 (+40%)
Mutual labels:  less
Ant Design Aliyun Theme
⚙ Ant Design Theme for console.aliyun.com
Stars: ✭ 237 (+1085%)
Mutual labels:  less
vuecli3-less-template
vuecli3+axios+vue-router+vuex项目通用模板,二次封装axios、预设less等,快速入手vuecli3
Stars: ✭ 33 (+65%)
Mutual labels:  less
Admin
react+koa实现登陆、聊天、留言板功能后台
Stars: ✭ 228 (+1040%)
Mutual labels:  less
Docs.influxdata.com Archive
ARCHIVE - 1.x docs for InfluxData
Stars: ✭ 234 (+1070%)
Mutual labels:  less
Material Colors
Colors of Google's Material Design made available to coders
Stars: ✭ 252 (+1160%)
Mutual labels:  less
Octoprint Touchui
A touch friendly interface for a small TFT module or phone
Stars: ✭ 226 (+1030%)
Mutual labels:  less
erupt-web
Erupt 框架前端源码,实现了 erupt 开发过程中零前端代码能力
Stars: ✭ 82 (+310%)
Mutual labels:  less
Style Resources Loader
CSS processor resources loader for webpack
Stars: ✭ 214 (+970%)
Mutual labels:  less
Reset Css
An unmodified* copy of Eric Meyer's CSS reset. PostCSS, webpack, Sass, and Less friendly.
Stars: ✭ 244 (+1120%)
Mutual labels:  less
vue-node-mongodb-blog
vue + node + mongodb + webpack5 + koa2 从开发到上线搭建一款简约的个人博客系统(前后端分离)
Stars: ✭ 44 (+120%)
Mutual labels:  less
OS-X-Yosemite-on-Unsupported-Macs
Install OS X Yosemite on Unsupported Macs
Stars: ✭ 23 (+15%)
Mutual labels:  reboot
Vue Cli4 Vant
基于vue-cli4和vant搭建的移动端开发模板
Stars: ✭ 253 (+1165%)
Mutual labels:  less

css-reset-and-normalize

A combination of css reset and normalize (available in CSS, SCSS, Stylus and LESS).

npm Package Version npm Downloads Package Dependencies GitHub Workflow Status (branch) GitHub last Commit GitHub Repo License MIT


About

This combination of css reset and normalize is based on

Rules and Reasons

Take a look at the source code, it has comments.

BTW: Here's an article about Reboot, Resets and Reasoning by Chris Coyier.

Installation

css-reset-and-normalize is a npm package. You can install it…

# …using npm
npm install --save css-reset-and-normalize
# …or yarn
yarn add css-reset-and-normalize

You can also use the latest generated CSS directly from a CDN:

  • from jsdelivr:
    <link rel="stylesheet" href="https://github.com//cdn.jsdelivr.net/npm/css-reset-and-normalize/css/reset-and-normalize.min.css">

  • from unpkg:
    <link rel="stylesheet" href="https://github.com//unpkg.com/css-reset-and-normalize/css/reset-and-normalize.min.css">

Usage

There are multiple ways:

  • HTML <link>

    <link rel="stylesheet" href="path/to/reset-and-normalize.min.css">
  • CSS @import

    @import "path/to/reset-and-normalize.min.css";
  • SCSS @import

    @import 'path/to/node_modules/css-reset-and-normalize/scss/reset-and-normalize';
  • Stylus @require

    @require 'path/to/node_modules/css-reset-and-normalize/stylus/reset-and-normalize'
  • LESS @import

    @import 'path/to/node_modules/css-reset-and-normalize/less/reset-and-normalize';

Optional Addons:

  • button-reset
  • link-reset

See source code.

Usage

The optional addons can be included the same way like the base library.

SCSS example:

@import 'path/to/node_modules/css-reset-and-normalize/scss/reset-and-normalize';
@import 'path/to/node_modules/css-reset-and-normalize/scss/button-reset';
@import 'path/to/node_modules/css-reset-and-normalize/scss/link-reset';

License

MIT © Simon Lepel

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].