Vulcan/packages/telescope-theme-base/lib/client/scss/specific/_layout.scss
Anthony Mayer 30ca412921 Compiling scss as part of build rather than with compass.
Remove dependency on compass, add fourseven:scss (includes autoprefixer),
add reset package, delete compiled css, and some random scss cleanup.
2014-11-23 21:11:15 -08:00

32 lines
No EOL
440 B
SCSS

*, *:before, *:after {
box-sizing: border-box;
line-height: 1.5;
}
html, body, .outer-wrapper{
height:100%;
}
body{
background:#eee;
font-size: 14px;
@include small{
overflow-x: hidden;
}
}
.outer-wrapper{
position:relative;
}
.content-wrapper{
padding-bottom:20px;
}
.content-wrapper{
padding: 0 10px;
max-width: 1000px;
margin: 0 auto;
@include small{
overflow-x: hidden;
overflow-y: hidden;
}
}