mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-07 14:17:16 +02:00
* feat(v2): enable JSX in markdown * reformat docs * chore(v2): nits * remove dummy test * include .mdx extension * add syntax highlighting with prismjs
30 lines
543 B
CSS
30 lines
543 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.
|
|
*/
|
|
|
|
.loader {
|
|
padding: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
.loaderSpinning {
|
|
width: 49px;
|
|
height: 49px;
|
|
margin: 0 auto;
|
|
border: 5px solid #ccc;
|
|
border-radius: 50%;
|
|
border-top: 5px solid #1d4d8b;
|
|
animation: loader-spin infinite 1s linear;
|
|
}
|
|
|
|
@keyframes loader-spin {
|
|
from {
|
|
transform: rotate(0deg);
|
|
}
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|