First Commit

This commit is contained in:
Kevin Adametz 2018-10-29 09:39:31 +01:00
commit 610aa1e202
4204 changed files with 636764 additions and 0 deletions

View file

@ -0,0 +1,29 @@
/** Boxed
**************************************************************** **/
body.boxed {
background-color:#f1f2f7;
}
body.boxed section {
background-color:#fff;
}
body.boxed #wrapper {
max-width:1170px;
margin-left:auto;
margin-right:auto;
margin-top:50px;
margin-bottom:50px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
@media only screen and (max-width: 992px) {
body.boxed #wrapper {
margin-top:0;
margin-bottom:0;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
}