feat: add styles for markdown tables and convert some HTML tables to markdown (#38126)

This commit is contained in:
Kristofer Koishigawa
2020-02-07 17:47:35 +09:00
committed by GitHub
parent afd467f5dc
commit 4ef445c543
10 changed files with 375 additions and 294 deletions

View File

@@ -348,6 +348,28 @@ hr {
background-color: var(--tertiary-background);
}
.challenge-instructions table {
display: inline-block;
overflow: auto;
}
.challenge-instructions table thead {
display: table-header-group;
vertical-align: middle;
border-color: inherit;
}
.challenge-instructions table th {
font-weight: 700;
}
.challenge-instructions table th,
.challenge-instructions table td {
padding: 6px 13px;
border: 1px solid var(--secondary-color);
text-align: center;
}
.help-block {
color: var(--quaternary-color);
}