_config.scss 738 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. //fonts
  2. @include font-face($CooperHewitt, $file, $family, $category);
  3. @include font-face($CooperHewitt-italic, $file2, $family2, $category2);
  4. @include font-face($rubik, $file3, $family3, $category3);
  5. @include font-face($rubik-B, $file4, $family3, $category3);
  6. @include font-face($cmu, $file5, $family5, $category5);
  7. // Fonts-size
  8. // $fH1
  9. // $fH2
  10. // $fH3
  11. // $fp
  12. // $fem
  13. // $fbold
  14. $marginbody: 35px;
  15. // header
  16. $heightH: (25px);
  17. // taille & position blocs
  18. // height
  19. $H100: 100%;
  20. $H50: calc(#{$H100} / 2);
  21. $H50-25: calc(#{$H100} / 2 + #{$heightH});
  22. // width
  23. $W100: 100%;
  24. $W33: calc(#{$W100} / 3);
  25. // top
  26. $T100: 100%;
  27. // right
  28. $R100: 100%;
  29. //bottom
  30. $B100: 100%;
  31. // left
  32. $L100: 100%;
  33. $L33: calc(#{$L100} / 3);
  34. $L66: calc(#{$L33} * 2);