asiaH3/assets/stylesheets/template/layout/content.scss

62 lines
1.0 KiB
SCSS
Raw Normal View History

2021-04-19 02:10:17 +00:00
@charset "utf-8";
@import "../initial";
.layout-content {
min-height: 600px;
//margin-bottom: 2em;
.container {
// @extend .response-content;
@media (min-width: $screen-sm) {
& > div{
padding: 0;
margin: 0;
}
}
}
.row {
background: $theme-white;
}
}
.page-home{
.layout-content {
min-height: 600px;
margin-bottom: 0;
.container {
// @extend .response-content;
& > div{
padding: 0;
}
& > .row{
background-color: #ebeae6;
margin: 0;
@media (min-width: $screen-lg) {
2021-05-03 02:01:18 +00:00
background-color: #ebeae6;
2021-04-19 02:10:17 +00:00
}
}
}
.layout-content-boxR {
2021-05-03 02:01:18 +00:00
padding: 10px;
2021-04-19 02:10:17 +00:00
@media (min-width: $screen-sm){
2021-05-03 02:01:18 +00:00
padding: 10px
2021-04-19 02:10:17 +00:00
}
}
2021-05-03 02:01:18 +00:00
.page-home .layout-content .layout-content-boxL {
margin-top: 20px;
margin-left: -10px;
padding: 5px 10px 5px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
background-color: #49ccc1;
@media (min-width: $screen-sm){
padding: 10px;
}
}
2021-04-19 02:10:17 +00:00
}
}