fix: some missing style (#152)

pull/158/head
Seaton Jiang 2020-02-28 20:22:46 +08:00
parent 25c5daf4e5
commit 507a0d1028
2 changed files with 21 additions and 1 deletions

View File

@ -720,6 +720,12 @@ button:focus {
word-break: break-all;
}
.k-main .details .article .content::after,.k-main .details .article .content p::after {
display: block;
clear: both;
content: "";
}
.k-main .details .article h1,
.k-main .details .article .content h2,
.k-main .details .article .content h3,
@ -851,6 +857,10 @@ button:focus {
list-style: none;
}
.k-main .details .article .content .wp-caption{
max-width: 100%;
}
.k-main .details .article .content img {
height: auto;
max-width: 100%;
@ -877,12 +887,22 @@ button:focus {
background-color: #f8f8f8;
}
.k-main .details .article .content .alignleft {
display: block;
float:left;
}
.k-main .details .article .content .aligncenter {
display: block;
margin-right: auto;
margin-left: auto;
}
.k-main .details .article .content .alignright {
display: block;
float:right;
}
.k-main .details .article .content .alert,.k-main .details .article .content .card,.card-header:first-child {
border-radius: 0;
}

File diff suppressed because one or more lines are too long