Skip to content
Snippets Groups Projects
Verified Commit 718a88b0 authored by Jake's avatar Jake
Browse files

stylize table

parent fa8d16c5
No related branches found
No related tags found
No related merge requests found
Pipeline #317739 passed
......@@ -480,8 +480,41 @@ sup {
max-width: 100%;
}
.content table {
width: 100%;
display: block;
border-collapse: collapse;
border-spacing: 0;
}
.content table tr {
width: 100%;
background-color: #fff;
border: 0.1em solid #ccc;
}
.content table tr:nth-child(2n) {
background-color: #f8f8f8;
}
.content table th {
font-weight: bold;
text-align: left;
}
.content table th,
.content table td {
padding: 0.4em 0.9em;
border: 0.1em solid #ddd;
}
.content table .has_recommended_width {
width: var(--recommended_width);
}
.content table .align_left { text-align: start; }
.content table .align_right { text-align: end; }
.content table .align_center { text-align: center; }
.content table .align_default { text-align: start; }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment