Add styles for 'table' and 'mark' elements
This commit is contained in:
parent
12d054be4f
commit
35d9f72287
1 changed files with 17 additions and 0 deletions
|
@ -198,7 +198,19 @@ svg:not(:root) {
|
|||
}
|
||||
|
||||
table {
|
||||
width: 100%;
|
||||
margin-bottom: 20px;
|
||||
border-spacing: 0;
|
||||
border-collapse: collapse;
|
||||
border-top: 1px solid #ddd;
|
||||
border-left: 1px solid #ddd;
|
||||
}
|
||||
|
||||
td,
|
||||
th {
|
||||
padding: 5px 10px;
|
||||
border-right: 1px solid #ddd;
|
||||
border-bottom: 1px solid #ddd;
|
||||
}
|
||||
|
||||
caption {
|
||||
|
@ -210,6 +222,7 @@ caption {
|
|||
}
|
||||
|
||||
th {
|
||||
font-weight: 700;
|
||||
text-align: inherit;
|
||||
}
|
||||
|
||||
|
@ -329,6 +342,10 @@ summary {
|
|||
cursor: pointer;
|
||||
}
|
||||
|
||||
mark {
|
||||
background-color: #f8ae00;
|
||||
}
|
||||
|
||||
/* Header */
|
||||
.header {
|
||||
margin: 0 0 5px;
|
||||
|
|
Loading…
Reference in a new issue