css for tables and table's captions
This commit is contained in:
parent
bb1565b1af
commit
6435c3557f
2 changed files with 18 additions and 1 deletions
|
@ -29,13 +29,30 @@ iframe {
|
||||||
border: 0;
|
border: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
strong del {
|
||||||
|
/* font-weight: normal; */
|
||||||
|
text-decoration: none;
|
||||||
|
margin-left: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
table {
|
table {
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
border-spacing: 0;
|
border-spacing: 0;
|
||||||
|
background-color: #fff9f9;
|
||||||
|
border-left: 1px red solid;
|
||||||
|
margin-left: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
table:first-child {
|
||||||
|
background-color: green;
|
||||||
}
|
}
|
||||||
|
|
||||||
td, th {
|
td, th {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
vertical-align: top;
|
||||||
|
padding-right: 1rem;
|
||||||
|
padding-left: 1rem;
|
||||||
|
padding-bottom: 0.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
td:not([align]), th:not([align]) {
|
td:not([align]), th:not([align]) {
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Add table
Reference in a new issue