66 lines
1.1 KiB
CSS
66 lines
1.1 KiB
CSS
@font-face {
|
|
font-family: "Source Han Sans CN";
|
|
font-style: normal;
|
|
font-weight: 500;
|
|
src: url("../fonts/SourceHanSansCN-Medium.otf");
|
|
}
|
|
|
|
body {
|
|
font-family: "Source Han Sans CN", sans-serif;
|
|
font-size: 1.2em;
|
|
line-height: 1.6;
|
|
margin: 0;
|
|
padding: 1em;
|
|
}
|
|
|
|
/* 表格样式 */
|
|
table {
|
|
border-collapse: collapse;
|
|
width: 100%;
|
|
margin: 1em 0;
|
|
}
|
|
|
|
th, td {
|
|
border: 1px solid #ddd;
|
|
padding: 8px 12px;
|
|
text-align: left;
|
|
}
|
|
|
|
th {
|
|
background-color: #f5f5f5;
|
|
font-weight: bold;
|
|
}
|
|
|
|
tr:nth-child(even) {
|
|
background-color: #f9f9f9;
|
|
}
|
|
|
|
/* 代码块样式 */
|
|
pre {
|
|
background-color: #f4f4f4;
|
|
border: 1px solid #ddd;
|
|
border-radius: 4px;
|
|
padding: 1em;
|
|
overflow-x: auto;
|
|
margin: 1em 0;
|
|
}
|
|
|
|
code {
|
|
font-family: "Courier New", monospace;
|
|
background-color: #f4f4f4;
|
|
padding: 2px 4px;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
pre code {
|
|
background-color: transparent;
|
|
padding: 0;
|
|
}
|
|
|
|
/* 标题样式 */
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: "Source Han Sans CN", sans-serif;
|
|
font-weight: bold;
|
|
margin-top: 1.5em;
|
|
margin-bottom: 0.5em;
|
|
} |