mostly filebased Content Presentation System
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

58 lines
927B

  1. //@import 'colors';
  2. @import "susy";
  3. $susy: (
  4. 'columns': susy-repeat(8, 202px),
  5. 'gutters': 1em,
  6. 'spread': 'narrow',
  7. 'container-spread': 'narrow',
  8. );
  9. @import "include-media";
  10. //----------------------------------
  11. // reset
  12. * {
  13. box-sizing:border-box;
  14. }
  15. body {
  16. margin: .5em;
  17. }
  18. nav * {
  19. list-style: none;
  20. padding:0;
  21. margin:0;
  22. }
  23. html {
  24. height:100vh;
  25. }
  26. html { -webkit-text-size-adjust: 100%; }
  27. $view_mobile: "only screen and (max-width : 450px)";
  28. $view_tablet: "only screen and (max-width : 1149px)";
  29. $view_not_mobile: "only screen and (min-width : 1150px)";
  30. // font-weight:
  31. // defaults taken from https://www.w3schools.com/csSref/pr_font_weight.asp
  32. $normal: 400;
  33. $bold: 700;
  34. $light: 100;
  35. $hspace: 1.3em;
  36. $vspace: 1.3em;
  37. @import "colours";
  38. @import "freaCMSfeatures";
  39. @import "fonts";
  40. @import "structure";
  41. //@import "design";
  42. //@import "onthefly";
  43. //@import "admin";
  44. //@import "dev";