114 lines
1.9 KiB
CSS
114 lines
1.9 KiB
CSS
/* 引用样式 */
|
|
blockquote {
|
|
padding: 20px;
|
|
margin: 20px 0;
|
|
border: 1px solid #eee;
|
|
border-left-width: 5px;
|
|
border-left-color: #ce4844;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
blockquote, q {
|
|
quotes: none;
|
|
}
|
|
|
|
/* 表格样式 */
|
|
table {
|
|
border-spacing: 0;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
td,
|
|
th {
|
|
padding: 0;
|
|
}
|
|
|
|
.table {
|
|
border-collapse: collapse !important;
|
|
}
|
|
|
|
.table td,
|
|
.table th {
|
|
/*background-color: #fff !important;*/
|
|
border: 1px solid #ddd;
|
|
}
|
|
|
|
.table-bordered th,
|
|
.table-bordered td {
|
|
border: 1px solid #ddd !important;
|
|
}
|
|
|
|
.table {
|
|
width: 100%;
|
|
max-width: 100%;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.table > thead > tr > th,
|
|
.table > tbody > tr > th,
|
|
.table > tfoot > tr > th,
|
|
.table > thead > tr > td,
|
|
.table > tbody > tr > td,
|
|
.table > tfoot > tr > td {
|
|
padding: 8px;
|
|
line-height: 1.42857143;
|
|
vertical-align: top;
|
|
border-top: 1px solid #ddd;
|
|
}
|
|
|
|
.table > thead > tr > th {
|
|
vertical-align: bottom;
|
|
border-bottom: 2px solid #ddd;
|
|
}
|
|
|
|
.table > caption + thead > tr:first-child > th,
|
|
.table > colgroup + thead > tr:first-child > th,
|
|
.table > thead:first-child > tr:first-child > th,
|
|
.table > caption + thead > tr:first-child > td,
|
|
.table > colgroup + thead > tr:first-child > td,
|
|
.table > thead:first-child > tr:first-child > td {
|
|
border-top: 0;
|
|
}
|
|
|
|
.table > tbody + tbody {
|
|
border-top: 2px solid #ddd;
|
|
}
|
|
|
|
.table .table {
|
|
background-color: #fff;
|
|
}
|
|
|
|
table col[class*="col-"] {
|
|
position: static;
|
|
display: table-column;
|
|
float: none;
|
|
}
|
|
|
|
table td[class*="col-"],
|
|
table th[class*="col-"] {
|
|
position: static;
|
|
display: table-cell;
|
|
float: none;
|
|
}
|
|
|
|
.ke-content img {
|
|
max-width: 100%;
|
|
}
|
|
|
|
body.darktheme {
|
|
background: #4d4d4d;
|
|
color: #ccc;
|
|
}
|
|
|
|
body.darktheme::-webkit-scrollbar {
|
|
width: 9px;
|
|
height: 9px;
|
|
}
|
|
|
|
body.darktheme::-webkit-scrollbar-thumb {
|
|
background: #999;
|
|
}
|
|
|
|
body.darktheme::-webkit-scrollbar-track {
|
|
background: #333;
|
|
} |