mirror of
https://github.com/facebook/docusaurus.git
synced 2025-08-02 16:29:47 +02:00
* feat(v2): doc page layout changes - Add a max-width to main content - Use 17px font size on large screen - Add a border-right to sidebar
29 lines
700 B
CSS
29 lines
700 B
CSS
/**
|
|
* Copyright (c) 2017-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
:root {
|
|
--ifm-color-primary: #25c2a0;
|
|
--ifm-color-primary-dark: rgb(33, 175, 144);
|
|
--ifm-color-primary-darker: rgb(31, 165, 136);
|
|
--ifm-color-primary-darkest: rgb(26, 136, 112);
|
|
--ifm-color-primary-light: rgb(70, 203, 174);
|
|
--ifm-color-primary-lighter: rgb(102, 212, 189);
|
|
--ifm-color-primary-lightest: rgb(146, 224, 208);
|
|
}
|
|
|
|
@media screen and (max-width: 996px) {
|
|
:root {
|
|
--ifm-font-size-base: 15px;
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 997px) {
|
|
:root {
|
|
--ifm-font-size-base: 17px;
|
|
}
|
|
}
|
|
|