mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-15 20:34:56 +02:00
40 lines
611 B
Plaintext
40 lines
611 B
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-list-left-padding: 2rem;
|
|
--ifm-list-margin: 1rem;
|
|
--ifm-list-item-margin: 0.25rem;
|
|
--ifm-list-paragraph-margin: 1rem;
|
|
}
|
|
|
|
/* Lists */
|
|
ul,
|
|
ol {
|
|
margin: 0 0 var(--ifm-list-margin);
|
|
padding-left: var(--ifm-list-left-padding);
|
|
}
|
|
|
|
ol ol,
|
|
ul ol {
|
|
list-style-type: lower-roman;
|
|
}
|
|
|
|
ul ul,
|
|
ul ol,
|
|
ol ol,
|
|
ol ul {
|
|
margin: 0;
|
|
}
|
|
|
|
ul ul ol,
|
|
ul ol ol,
|
|
ol ul ol,
|
|
ol ol ol {
|
|
list-style-type: lower-alpha;
|
|
}
|