Vulcan/packages/telescope-theme-base/lib/client/scss/specific/_layout.scss

46 lines
684 B
SCSS
Raw Normal View History

2014-08-20 15:59:11 +09:00
*, *:before, *:after {
box-sizing: border-box;
line-height: 1.5;
2014-08-20 15:59:11 +09:00
}
html, body, .outer-wrapper{
height:100%;
}
body{
background:#eee;
font-size: 14px;
@include small{
overflow-x: hidden;
}
}
.outer-wrapper{
position:relative;
2015-03-12 18:07:23 +09:00
&.side-nav{
@include medium-large{
margin-left: 200px;
}
}
2014-08-20 15:59:11 +09:00
}
.content-wrapper{
2015-03-12 18:07:23 +09:00
padding:0 10px 20px 10px;
.side-nav &{
@include medium-large{
padding-top: 20px;
}
}
2014-08-20 15:59:11 +09:00
}
.content-wrapper{
max-width: 1000px;
margin: 0 auto;
@include small{
overflow-x: hidden;
overflow-y: hidden;
}
2015-01-10 11:38:19 +09:00
}
.grid-module, .at-form{
background: white;
padding: $grid-padding;
margin-bottom: $grid-margin;
2014-08-20 15:59:11 +09:00
}