Add article styles

This commit is contained in:
Dennis Eichhorn 2018-05-09 20:43:57 +02:00
parent a071b1755b
commit ecc959a7ac
3 changed files with 62 additions and 0 deletions

View File

@ -42,5 +42,21 @@ article {
margin: 0; }
article p {
line-height: 1.5em; }
article ol, article ul {
margin-left: 30px; }
article ul {
list-style: disc; }
article blockquote {
margin: 10px 0 10px 0; }
article blockquote p:last-child {
margin-bottom: 0; }
article table {
border-collapse: collapse;
border: 1px solid #999; }
article table th, article table td {
padding: 5px;
border: 1px solid #999; }
article table tr:nth-child(2n) {
background: #eee; }
/*# sourceMappingURL=default.css.map */

View File

@ -44,4 +44,34 @@ article {
p {
line-height: 1.5em;
}
ol, ul {
margin-left: 30px;
}
ul {
list-style: disc;
}
blockquote {
margin: 10px 0 10px 0;
p:last-child {
margin-bottom: 0;
}
}
table {
border-collapse: collapse;
border: 1px solid #999;
th, td {
padding: 5px;
border: 1px solid #999;
}
tr:nth-child(2n) {
background: #eee;
}
}
}

View File

@ -84,6 +84,22 @@ article {
margin: 0; }
article p {
line-height: 1.5em; }
article ol, article ul {
margin-left: 30px; }
article ul {
list-style: disc; }
article blockquote {
margin: 10px 0 10px 0; }
article blockquote p:last-child {
margin-bottom: 0; }
article table {
border-collapse: collapse;
border: 1px solid #999; }
article table th, article table td {
padding: 5px;
border: 1px solid #999; }
article table tr:nth-child(2n) {
background: #eee; }
.ok {
color: #5cff56; }