Themed tables,

This commit is contained in:
BurnyLlama 2021-08-10 22:49:20 +02:00
parent 9a5c0de17f
commit 10ab05eefa
3 changed files with 20 additions and 4 deletions

View File

@ -99,11 +99,15 @@ ul ul, ul ol, ol ol, ol ul {
} }
table { table {
display: block; margin: 1rem 0;
width: 100%; width: 100%;
display: block;
overflow-x: auto; overflow-x: auto;
white-space: nowrap; white-space: nowrap;
border-collapse: collapse; border-collapse: collapse;
box-shadow: 0 1rem 2rem var(--grey1);
} }
table tbody { table tbody {
@ -112,21 +116,23 @@ table tbody {
} }
tr { tr {
width: 200%;
background-color: var(--grey3); background-color: var(--grey3);
} }
tr:nth-child(even) { tr:nth-child(even) {
background-color: var(--grey4); background-color: var(--grey2);
} }
th { th {
border-bottom: .1rem solid var(--text); font-family: 'Manrope SemiBold';
} }
th, td { th, td {
text-align: left; text-align: left;
vertical-align: middle;
padding: .25rem 1rem; padding: .25rem 1rem;
border: 1px solid var(--grey4);
} }
code { code {

View File

@ -91,6 +91,7 @@ If you use OMEMO, the calls will be encrypted.
# Tor # Tor
You can also connect using Tor, use the following information: You can also connect using Tor, use the following information:
| Port | Hostname | | Port | Hostname |
|------|----------------------------------------------------------------| |------|----------------------------------------------------------------|
| 5222 | qwikxcv6qo7ochwil3ihobsclz6ulfkszvngy6cna4rx6a6a4bedktad.onion | | 5222 | qwikxcv6qo7ochwil3ihobsclz6ulfkszvngy6cna4rx6a6a4bedktad.onion |

View File

@ -18,5 +18,14 @@ export const markedRenderer = {
<code class="language-${lang}">${highlight(code, lang)}</code> <code class="language-${lang}">${highlight(code, lang)}</code>
</pre> </pre>
` `
},
table(header, body) {
return `
<table>
${header}
${body}
</table>
`
} }
} }