27 lines
566 B
CSS
27 lines
566 B
CSS
/**
|
|
* MD 基础主题样式
|
|
* 包含所有元素的基础样式和 CSS 变量定义
|
|
*/
|
|
|
|
/* ==================== 容器样式 ==================== */
|
|
section,
|
|
container {
|
|
font-family: var(--md-font-family);
|
|
font-size: var(--md-font-size);
|
|
line-height: 1.75;
|
|
text-align: left;
|
|
}
|
|
|
|
/* 确保 #output 容器应用基础样式 */
|
|
#output {
|
|
font-family: var(--md-font-family);
|
|
font-size: var(--md-font-size);
|
|
line-height: 1.75;
|
|
text-align: left;
|
|
}
|
|
|
|
/* 去除第一个元素的 margin-top */
|
|
#output section > :first-child {
|
|
margin-top: 0 !important;
|
|
}
|