mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-12 20:04:57 +02:00
26 lines
465 B
Plaintext
26 lines
465 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.
|
|
*/
|
|
|
|
.close {
|
|
color: var(--ifm-color-black);
|
|
float: right;
|
|
font-size: 1.5rem;
|
|
font-weight: var(--ifm-font-weight-bold);
|
|
line-height: 1;
|
|
opacity: 0.5;
|
|
padding: 1rem;
|
|
@mixin transition opacity;
|
|
|
|
&:hover {
|
|
opacity: 0.7;
|
|
}
|
|
|
|
&:focus {
|
|
opacity: 0.8;
|
|
}
|
|
}
|