app.scss 757 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. // @Author: Bachir Soussi Chiadmi <bach>
  2. // @Date: 18-12-2017
  3. // @Email: bachir@figureslibres.io
  4. // @Filename: app.scss
  5. // @Last modified by: bach
  6. // @Last modified time: 20-12-2017
  7. // @License: GPL-V3
  8. @import 'base/reset';
  9. @import 'base/vars';
  10. @import 'base/grid';
  11. @import 'base/colors';
  12. @import 'base/buttons';
  13. body, html{
  14. position: relative;
  15. width: 100%;
  16. height:100%;
  17. font-family: Georgia, serif;
  18. font-style: normal;
  19. margin:0;
  20. padding:0;
  21. }
  22. div.layout-container{
  23. position: relative;
  24. width:100%; height:100%;
  25. padding:1em;
  26. box-sizing: border-box;
  27. z-index: 1;
  28. }
  29. header[role="banner"]{
  30. outline: 1px solid blue;
  31. }
  32. main[role="main"]{
  33. outline:1px solid green;
  34. }
  35. footer[role="contentinfo"]{
  36. outline: 1px solid pink;
  37. }