* docs: redesigned navigation bar (#2478) * docs: redesigned homepage (#2480) * docs: redesigned homepage * fixed link * docs: redesigned notes (#2491) * docs: Applied Typography redesign rules (#2516) * changes to typography * small changes and fixes * docs: redesigned table of content (#2518) * redesigning toc * finalized table of content design * docs: redesigned code blocks (#2519) * docs: redesigned code blocks * removed unused package * docs: redesigned survey and content footer (#2522) * fixes to inline code * redesigned doc footer * docs: redesigned footer (#2523) * docs: changed dark mode colors (#2524) * docs: redesigned sidebar (#2535) * docs: redesigned search modal (#2537) * docs: resolved loose ends (#2538) * added spacing for tabs * docs: added no-zoom class for deploy images * fix to tooltip design for inline code
79 lines
1.5 KiB
CSS
79 lines
1.5 KiB
CSS
h1 {
|
|
font-size: var(--ifm-h1-font-size);
|
|
line-height: var(--ifm-h1-line-height);
|
|
}
|
|
|
|
h2 {
|
|
font-size: var(--ifm-h2-font-size);
|
|
line-height: var(--ifm-h2-line-height);
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
color: var(--ifm-color-headers);
|
|
}
|
|
|
|
p {
|
|
font-weight: 400;
|
|
}
|
|
|
|
.theme-doc-markdown a:hover {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.markdown h1:first-child {
|
|
font-size: 30px !important;
|
|
}
|
|
|
|
.markdown > h2 {
|
|
font-size: 24px !important;
|
|
}
|
|
|
|
.markdown > p {
|
|
margin-bottom: calc(var(--ifm-base-margin-vertical) / 4);
|
|
}
|
|
|
|
.markdown a,
|
|
.markdown a:hover {
|
|
color: var(--ifm-link-color);
|
|
}
|
|
|
|
.markdown a:not(.hash-link) {
|
|
font-weight: var(--ifm-link-weight);
|
|
}
|
|
|
|
.markdown a:not(.hash-link):not(.card):not(.img-url):after {
|
|
display: inline-block;
|
|
width: 16px;
|
|
height: 16px;
|
|
content: '';
|
|
vertical-align: middle;
|
|
}
|
|
|
|
html:not([data-theme="dark"]) .markdown a:not(.hash-link):not(.card):not(.img-url):after {
|
|
background-image: url('/img/link-icon.svg');
|
|
}
|
|
|
|
[data-theme="dark"] .markdown a:not(.hash-link):not(.card):not(.img-url):after {
|
|
background-image: url('/img/link-icon-dark.svg');
|
|
}
|
|
|
|
.markdown p + h2,
|
|
.markdown .alert + h2 {
|
|
margin-top: calc(var(--ifm-base-margin-vertical) * 2);
|
|
}
|
|
|
|
.markdown p + .alert {
|
|
margin-top: var(--ifm-base-margin-vertical);
|
|
}
|
|
|
|
.markdown {
|
|
margin-bottom: calc(var(--ifm-base-margin-vertical) * 2);
|
|
}
|
|
|
|
.markdown p + p > img:not(.ui-icon) {
|
|
margin-top: var(--ifm-base-margin-vertical);
|
|
}
|
|
|
|
p + img:not(.ui-icon) {
|
|
margin-bottom: calc(var(--ifm-base-margin-vertical) * 2);
|
|
} |