mirror of
https://github.com/facebook/docusaurus.git
synced 2025-12-27 11:32:48 +00:00
Add [autoprefixer](https://github.com/postcss/autoprefixer) as a final build step in the CSS pipeline.
25 lines
477 B
CSS
25 lines
477 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.
|
|
*/
|
|
.hljs {
|
|
margin-left: -15px;
|
|
margin-right: -15px;
|
|
border: 1px solid #eee;
|
|
border-radius: 6px;
|
|
padding: 15px;
|
|
font-size: 15px;
|
|
max-width: 50rem;
|
|
}
|
|
.hljs.javascript {
|
|
background-color: rgba(247, 223, 30, 0.03);
|
|
}
|
|
.hljs .comment {
|
|
opacity: 0.7;
|
|
}
|
|
::placeholder {
|
|
color: gray;
|
|
}
|