1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- // @Author: Bachir Soussi Chiadmi <bach>
- // @Date: 18-12-2017
- // @Email: bachir@figureslibres.io
- // @Filename: app.scss
- // @Last modified by: bach
- // @Last modified time: 20-12-2017
- // @License: GPL-V3
- @import 'base/reset';
- @import 'base/vars';
- @import 'base/grid';
- @import 'base/colors';
- @import 'base/buttons';
- body, html{
- position: relative;
- width: 100%;
- height:100%;
- font-family: Georgia, serif;
- font-style: normal;
- margin:0;
- padding:0;
- }
- div.layout-container{
- position: relative;
- width:100%; height:100%;
- padding:1em;
- box-sizing: border-box;
- z-index: 1;
- }
- header[role="banner"]{
- outline: 1px solid blue;
- }
- main[role="main"]{
- outline:1px solid green;
- }
- footer[role="contentinfo"]{
- outline: 1px solid pink;
- }
|