54 lines
913 B
SCSS
54 lines
913 B
SCSS
|
@charset "utf-8";
|
||
|
|
||
|
@import "../initial";
|
||
|
|
||
|
// Faqs MODULES
|
||
|
.widget-faqs {
|
||
|
&.widget1 {
|
||
|
.widget-content {
|
||
|
padding-bottom: 10px;
|
||
|
|
||
|
& + .widget-content {
|
||
|
border-top: 1px dotted $theme-gray-light;
|
||
|
}
|
||
|
|
||
|
.widget-content-title {
|
||
|
display: inline-block;
|
||
|
padding: 5px 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// 在 layout-content 下的樣式
|
||
|
.layout-content & {
|
||
|
.widget-title {
|
||
|
@extend .unity-title;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// 在 layout-footer 下的樣式
|
||
|
.layout-footer & {
|
||
|
.widget-content {
|
||
|
line-height: 2em;
|
||
|
border-top-color: $theme-gray;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Faqs INDEX
|
||
|
.index-faqs {
|
||
|
.index-title {
|
||
|
@extend .unity-title;
|
||
|
}
|
||
|
|
||
|
&.index1 {
|
||
|
.index-content {
|
||
|
list-style-type: decimal-leading-zero;
|
||
|
list-style-position: inside;
|
||
|
|
||
|
& + .index-content {
|
||
|
border-top: 1px dotted $theme-gray-light;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|