mirror of
https://github.com/facebook/docusaurus.git
synced 2025-07-30 15:00:09 +02:00
41 lines
875 B
CSS
41 lines
875 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.
|
|
*/
|
|
|
|
/**
|
|
* Styles for NProgress
|
|
* Copied over to remove unused styles for the spinner.
|
|
* https://github.com/rstacruz/nprogress/blob/master/nprogress.css
|
|
*/
|
|
|
|
:root {
|
|
--docusaurus-progress-bar-color: var(--ifm-color-primary);
|
|
}
|
|
|
|
#nprogress {
|
|
pointer-events: none;
|
|
}
|
|
|
|
#nprogress .bar {
|
|
background: var(--docusaurus-progress-bar-color);
|
|
position: fixed;
|
|
z-index: 1031;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 2px;
|
|
}
|
|
|
|
#nprogress .peg {
|
|
position: absolute;
|
|
right: 0;
|
|
width: 100px;
|
|
height: 100%;
|
|
box-shadow: 0 0 10px var(--docusaurus-progress-bar-color),
|
|
0 0 5px var(--docusaurus-progress-bar-color);
|
|
opacity: 1;
|
|
transform: rotate(3deg) translate(0, -4px);
|
|
}
|