Sha256: f41c67bf8ba0fb8ee043e1ede86166f617494d73a986a4bd11ff5b9e1d7ce517

Contents?: true

Size: 817 Bytes

Versions: 2

Compression:

Stored size: 817 Bytes

Contents

// Variable declaration. Define any constants for easy updating such as colours, sizes and fonts.

// Colours (Pre-define colours to use in project)
$color-white: #FFF;
$color-purple: #703493;
$color-dark-grey: #333;

// Fonts (Pre-define fonts to use in project)

// Used to calculate rem values etc
$browser-default-font-size: 16px;

$font1: 'Open Sans', "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
$font2: 'Gentium Basic', serif;

// Breakpoints (used by grid to calculate additional breakpoints)
$break-m: 767px;
$break-s: 430px;

$breakpoints: m $break-m, s $break-s;   // Additional breakpoints, exports to .pure-u-m-1-4 etc


// Grid control
$site-width: 1200px;    // Max site width (Max width of .min-container elements)
$site-gutter: 20px;     // Define the gutter between columns in px

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
minable-0.0.2 app/assets/stylesheets/_settings.scss
minable-0.0.1 app/assets/stylesheets/_settings.scss