kevbost / SCSS-personal-resets

My personal _helpers.scss and _variables.scss that are useful for me across all projects.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SCSS-personal-resets

A collection of .scss files that are useful additions to all of my personal scss projects.

Includes

  1. _helpers.scss
  2. _variables.scss

_helpers.scss

A file of helpful classes such as:

.no-margin { margin: 0 }
.no-padding { padding: 0 }
// and many more

_variables.scss

A file full of useful variables such as a decent range of grays based on the bootstrap set of gray variables.

// GRAYS
// -------------------------
$gray-lighter-white:    #fafafa;
$gray-lighter:          #eeeeee;
$gray-light-mid-mid:    #e6e7e8;
$gray-light-mid:        #dddddd;
$gray-light:            #b3b3b3;
$gray-mid-light:        #777777;
$gray-mid:              #5f5f5f;
$gray:                  #414042;
$gray-dark:             #333333;
$gray-darker:           #222222;
$gray-darker-black:     #090909;
// and many more

About

My personal _helpers.scss and _variables.scss that are useful for me across all projects.


Languages

Language:CSS 100.0%