Sha256: fe98725873293f9f5d18125ac04159f578cc912b279663c230da78a82952d692

Contents?: true

Size: 1.11 KB

Versions: 8

Compression:

Stored size: 1.11 KB

Contents

$site : (
  padding : 50px
);

$topbar : (
  height  : 60px,
  padding : 15px
);

$book : (

  large : (
    title  : 5.6rem,
    width  : 110px
  ),

  medium : (
    title  : 5.6rem,
    width  : 90px
  ),

  small : (
    title  : 5.6rem,
    width  : 75px
  )

);

$query : (
  min440  : 'only screen and (min-width: 440px)',
  max599  : 'only screen and (max-width: 599px)',
  min600  : 'only screen and (min-width: 600px)',
  max639  : 'only screen and (max-width: 639px)',
  min640  : 'only screen and (min-width: 640px)',
  min700  : 'only screen and (min-width: 700px)',
  max767  : 'only screen and (max-width: 767px)',
  min768  : 'only screen and (min-width: 768px)',
  max839  : 'only screen and (max-width: 839px)',
  min840  : 'only screen and (min-width: 840px)',
  min1024 : 'only screen and (min-width: 1024px)'
);

$BigGap : map-get($topbar,height) + map-get($site,padding);
$SmallGap : 20px;
$radius : 4px;

// https://stackoverflow.com/questions/27740063/merge-multiple-sass-maps
// function for more concise usage of map-get()

@function getbook($size, $value) {

  @return map-get(map-get($book, $size), $value);

}

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
futuro-1.1.8 _sass/helpers/variables.scss
futuro-1.1.7 _sass/helpers/variables.scss
futuro-1.1.6 _sass/helpers/variables.scss
futuro-1.1.5 _sass/helpers/variables.scss
futuro-1.1.4 _sass/helpers/variables.scss
futuro-1.1.3 _sass/helpers/variables.scss
futuro-1.1.2 _sass/helpers/variables.scss
futuro-1.1.1 _sass/helpers/variables.scss