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 { .toc {
background-color: #f0f0f0; background-color: #f0f0f0;
padding: 16px; padding: 16px;

View file

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

View file

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