mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-12 20:04:57 +02:00
33 lines
702 B
Plaintext
33 lines
702 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.
|
|
*/
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html {
|
|
background-color: var(--ifm-background-color);
|
|
color: var(--ifm-font-color-base);
|
|
color-scheme: var(--ifm-color-scheme);
|
|
font: var(--ifm-font-size-base) / var(--ifm-line-height-base)
|
|
var(--ifm-font-family-base);
|
|
-webkit-font-smoothing: antialiased;
|
|
-webkit-tap-highlight-color: transparent;
|
|
text-rendering: optimizelegibility;
|
|
text-size-adjust: 100%;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
overflow-wrap: break-word;
|
|
}
|
|
|
|
iframe {
|
|
border: 0;
|
|
color-scheme: auto;
|
|
}
|