命名規則 | 命名例 | |
---|---|---|
セクション(section) | [任意のクラス名]_sec | custom_sec, bg_sec |
また、innerは編集画面上では触ることができないため、クラスをつけることができません。
顧客の混乱を防ぐために、innerに対しては、必要がない限りはCSSでの調整はなるべく加えないようにしてください。
デザイン上、innerに対してデザインを当てる必要がある場合には、セクションに独自クラスを付けて紐づける形で記述をしてください。
//新CMSコピー元での記述例
/*----------------------------------
main(コンテンツ)
----------------------------------*/
@include theme-fo-base {
&.maxW_sec {
.inner {
ここに記述
}
...
/*----------- 外観 --------------*/
.theme-fo-base {
.wrapper {
.contents {
//各セクションの余白
section {
padding: $section_padding;
@include breakpoint-sp {
padding: $section_sp_padding;
}
}
}
}
}
/*----------- 外観 --------------*/
.theme-fo-base {
.wrapper {
.contents {
//各セクションの余白
section {
padding: $section_padding;
@include breakpoint-sp {
padding: $section_sp_padding;
}
}
}
}
}
変数の記述箇所
//セクション余白
$section_padding: 70px 0 60px; //PC時のパディング
$section_sp_padding: 0; //SP時のパディング
/*----------------------------------
main(コンテンツ)
----------------------------------*/
@include theme-fo-base {
//テストセクション ●●ページで使用
&.test_sec {
//ここに記述
}
.inner {
.row {
…以下省略
/*----------------------------------
main(コンテンツ)
----------------------------------*/
/*--- TOP ---*/
.theme-fo-base {
.wrapper {
.contents {
section {
//テストセクション
&.test_sec {
//ここに記述
}
.inner {
.row {
…以下省略
© Basic Inc. All Rights Reserved.