mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-13 20:14:56 +02:00
42 lines
1.0 KiB
Plaintext
42 lines
1.0 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-heading-color: inherit;
|
|
--ifm-heading-margin-top: 0;
|
|
--ifm-heading-margin-bottom: var(--ifm-spacing-vertical);
|
|
--ifm-heading-font-family: var(--ifm-font-family-base);
|
|
--ifm-heading-font-weight: var(--ifm-font-weight-bold);
|
|
--ifm-heading-line-height: 1.25;
|
|
|
|
--ifm-h1-font-size: 2rem;
|
|
--ifm-h2-font-size: 1.5rem;
|
|
--ifm-h3-font-size: 1.25rem;
|
|
--ifm-h4-font-size: 1rem;
|
|
--ifm-h5-font-size: 0.875rem;
|
|
--ifm-h6-font-size: 0.85rem;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
color: var(--ifm-heading-color);
|
|
font-family: var(--ifm-heading-font-family);
|
|
font-weight: var(--ifm-heading-font-weight);
|
|
line-height: var(--ifm-heading-line-height);
|
|
margin: var(--ifm-heading-margin-top) 0 var(--ifm-heading-margin-bottom) 0;
|
|
}
|
|
|
|
@for $size from 1 to 6 {
|
|
h$(size) {
|
|
font-size: var(--ifm-h$(size)-font-size);
|
|
}
|
|
}
|