mirror of
https://github.com/facebook/docusaurus.git
synced 2025-08-04 01:09:20 +02:00
42 lines
882 B
CSS
42 lines
882 B
CSS
/**
|
|
* 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.
|
|
*/
|
|
|
|
.admonition {
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
.admonitionHeading {
|
|
font: var(--ifm-heading-font-weight) var(--ifm-h5-font-size) /
|
|
var(--ifm-heading-line-height) var(--ifm-heading-font-family);
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
/* Heading alone without content (does not handle fragment content) */
|
|
.admonitionHeading:not(:last-child) {
|
|
margin-bottom: 0.3rem;
|
|
}
|
|
|
|
.admonitionHeading code {
|
|
text-transform: none;
|
|
}
|
|
|
|
.admonitionIcon {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
margin-right: 0.4em;
|
|
}
|
|
|
|
.admonitionIcon svg {
|
|
display: inline-block;
|
|
height: 1.6em;
|
|
width: 1.6em;
|
|
fill: var(--ifm-alert-foreground-color);
|
|
}
|
|
|
|
.admonitionContent > :last-child {
|
|
margin-bottom: 0;
|
|
}
|