mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-12 20:04:57 +02:00
64 lines
1.4 KiB
Plaintext
64 lines
1.4 KiB
Plaintext
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
:root {
|
|
--ifm-table-cell-padding: 0.75rem;
|
|
|
|
--ifm-table-background: transparent;
|
|
--ifm-table-stripe-background: rgba(0, 0, 0, 0.03);
|
|
|
|
--ifm-table-border-width: 1px;
|
|
--ifm-table-border-color: var(--ifm-color-emphasis-300);
|
|
|
|
--ifm-table-head-background: inherit;
|
|
--ifm-table-head-color: inherit;
|
|
--ifm-table-head-font-weight: var(--ifm-font-weight-bold);
|
|
|
|
--ifm-table-cell-color: inherit;
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
display: block;
|
|
margin-bottom: var(--ifm-spacing-vertical);
|
|
overflow: auto;
|
|
|
|
thead tr {
|
|
border-bottom: 2px solid var(--ifm-table-border-color);
|
|
}
|
|
|
|
thead {
|
|
background-color: var(--ifm-table-stripe-background);
|
|
}
|
|
|
|
tr {
|
|
background-color: var(--ifm-table-background);
|
|
border-top: var(--ifm-table-border-width) solid
|
|
var(--ifm-table-border-color);
|
|
}
|
|
|
|
tr:nth-child(2n) {
|
|
background-color: var(--ifm-table-stripe-background);
|
|
}
|
|
|
|
th,
|
|
td {
|
|
border: var(--ifm-table-border-width) solid var(--ifm-table-border-color);
|
|
padding: var(--ifm-table-cell-padding);
|
|
}
|
|
|
|
th {
|
|
background-color: var(--ifm-table-head-background);
|
|
color: var(--ifm-table-head-color);
|
|
font-weight: var(--ifm-table-head-font-weight);
|
|
}
|
|
|
|
td {
|
|
color: var(--ifm-table-cell-color);
|
|
}
|
|
}
|