mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-01-10 07:08:05 -05:00
26 lines
407 B
CSS
26 lines
407 B
CSS
.mdbook-tabs {
|
|
display: flex;
|
|
}
|
|
|
|
.mdbook-tab {
|
|
background-color: var(--table-alternate-bg);
|
|
padding: 0.5rem 1rem;
|
|
cursor: pointer;
|
|
border: none;
|
|
font-size: 1.6rem;
|
|
line-height: 1.45em;
|
|
}
|
|
|
|
.mdbook-tab.active {
|
|
background-color: var(--table-header-bg);
|
|
font-weight: bold;
|
|
}
|
|
|
|
.mdbook-tab-content {
|
|
padding: 1rem 0rem;
|
|
}
|
|
|
|
.mdbook-tab-content table {
|
|
margin: unset;
|
|
}
|