upd
This commit is contained in:
parent
a3af588a0f
commit
7b84e0c84c
3 changed files with 31 additions and 2 deletions
|
@ -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;
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -25,5 +25,5 @@
|
|||
</div>
|
||||
{% endif %}
|
||||
|
||||
{{ page.content | safe }}
|
||||
<div id="content">{{ page.content | safe }}</div>
|
||||
{% endblock %}
|
||||
|
|
Loading…
Reference in a new issue