This commit is contained in:
Michael Zhang 2019-05-05 22:24:50 -05:00
parent a3af588a0f
commit 7b84e0c84c
No known key found for this signature in database
GPG Key ID: 5BAEFE5D04F0CE6C
3 changed files with 31 additions and 2 deletions

View File

@ -123,6 +123,35 @@ header {
}
}
#content {
table {
border: 1px solid rgba(0, 0, 0, 0.5);
border-spacing: 0;
padding: 0;
thead {
th {
background-color: rgba(0, 0, 0, 0.5);
padding: 8px 12px ;
color: white;
}
}
tbody {
td {
padding: 8px 12px;
}
tr:nth-child(even) {
background-color: rgba(255, 255, 255, 0.5);
}
tr:nth-child(odd) {
background-color: rgba(204, 204, 204, 0.5);
}
}
}
}
.toc {
background-color: #f0f0f0;
padding: 16px;

View File

@ -3,7 +3,7 @@
"name": "Michael Zhang",
"email": "iptq@protonmail.com",
"phone": "240-813-8477",
"website": "https://mzhang.me",
"website": "https://iptq.io",
"profiles": [
{
"network": "Twitter",

View File

@ -25,5 +25,5 @@
</div>
{% endif %}
{{ page.content | safe }}
<div id="content">{{ page.content | safe }}</div>
{% endblock %}