Thanks to visit codestin.com
Credit goes to github.com

Skip to content

yhvicey/core-css

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Core CSS

Core CSS is a lightweight starting point for building responsive websites. It weighs about 1.1kb, minified and gzipped. There are no pre-styled elements or animations built-in – just a reset and a grid system. This is a framework for people who don't need all the features of larger frameworks and just want to build systematically from the ground up. Feel free to take this and customize it so that you can work the way you want to work.

 

Reset

The goal is to reduce all elements to their most basic, unopinionated forms so that you can overwrite the default browser styles quickly using minimal code. With this method, all subjective styling is 'opt-in', and you can know that every aspect of the end result is intentional.

Reset Features

  • Intuitive box-sizing
  • System font stack by default
  • Zeroed-out margin and padding
  • Cross-browser normalization
  • Nonarbitrary values throughout
    • font-size: 100%, line-height: 1
    • font-weight: normal, font-style: normal
    • color: currentColor, background: transparent
    • border: 0, border-radius: 0

 

Grid

Dead-simple responsive grid system. The columns are float-based, and the rows are self-clearing. The breakpoints are logical and evenly-spaced. A column's visibility can be set with the same syntax as its width (e.g. xs-0 lg-12 is hidden, then full-width on large and up).

Grid Features

  • Rows
    • Full-width and centered by default
    • Max-width helper classes
    • Alignment helper classes
  • Columns
    • Full-width and left-aligned by default
    • Responsive-width helper classes
    • Visibility helper classes
  • Nonarbitrary style and behavior
    • No margins/padding/gutters
    • Infinite nesting
    • No .container necessary
    • Breakpoints at 256px intervals

About

An ultra-minimal framework

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • CSS 93.8%
  • HTML 6.2%