fix: correct some html tags, css properties

This commit is contained in:
jeffreytse 2019-12-05 19:09:26 +08:00
parent 8c1cde8fc9
commit e80f1b5c8a
4 changed files with 37 additions and 38 deletions

View file

@ -6,6 +6,4 @@
</div> </div>
<div>
</article> </article>

View file

@ -11,4 +11,4 @@ sidebar: category-list
{{ content }} {{ content }}
{% include views/pagination.html %} {% include views/pagination.html %}
<div> </div>

View file

@ -46,8 +46,6 @@ sidebar:
{%- endif -%} {%- endif -%}
</section> </section>
{%- include extensions/mathjax.html -%}
</div> </div>

View file

@ -207,20 +207,23 @@ table {
text-align: $table-text-align; text-align: $table-text-align;
color: lighten($text-color, 18%); color: lighten($text-color, 18%);
border-collapse: collapse; border-collapse: collapse;
border: 1px solid $grey-color-light;
tr { tr {
&:nth-child(even) { &:nth-child(even) {
background-color: lighten($grey-color-light, 6%); background-color: lighten($grey-color-light, 6%);
} }
} }
th, td { th, td {
padding: ($spacing-unit / 3) ($spacing-unit / 2); padding: ($spacing-unit / 3) ($spacing-unit / 2);
} }
th { th {
background-color: lighten($grey-color-light, 3%); background-color: lighten($grey-color-light, 3%);
border: 1px solid darken($grey-color-light, 4%); border: 1px solid darken($grey-color-light, 4%);
border-bottom-color: darken($grey-color-light, 12%); border-bottom-color: darken($grey-color-light, 12%);
} }
td { td {
border: 1px solid $grey-color-light; border: 1px solid $grey-color-light;
} }