Created
April 5, 2023 15:16
-
-
Save Kremilly/9184af029040d8824860b6e3c3ecc436 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*--------------------------------------------------------------------------------------------- | |
| * Copyright (c) Microsoft Corporation. All rights reserved. | |
| * Licensed under the MIT License. See License.txt in the project root for license information. | |
| *--------------------------------------------------------------------------------------------*/ | |
| body { | |
| font-family: "HelveticaNeue-Light", sans-serif, "宋体","Segoe WPC", "Segoe UI", "SFUIText-Light","Droid Sans Fallback"; | |
| font-size: 18px; | |
| padding: 0 12px; | |
| line-height: 1.6; | |
| word-wrap: break-word; | |
| color: #333333; | |
| } | |
| img { | |
| max-width: 100%; | |
| max-height: 100%; | |
| } | |
| a { | |
| color: #4080D0; | |
| text-decoration: none; | |
| } | |
| a:focus, | |
| input:focus, | |
| select:focus, | |
| textarea:focus { | |
| outline: 1px solid -webkit-focus-ring-color; | |
| outline-offset: -1px; | |
| } | |
| hr { | |
| border: 0; | |
| height: 2px; | |
| border-bottom: 2px solid; | |
| } | |
| h1 { | |
| padding-bottom: 0.3em; | |
| line-height: 1.2; | |
| border-bottom: 1px solid #eee; | |
| } | |
| h2{ | |
| padding-bottom: .3em; | |
| font-size: 2em; | |
| line-height: 1.225; | |
| border-bottom: 1px solid #eee; | |
| } | |
| h3{ | |
| font-size: 1.75em; | |
| line-height: 1.225; | |
| } | |
| h1, h2, h3 { | |
| font-weight: bold; | |
| } | |
| h1 code, | |
| h2 code, | |
| h3 code, | |
| h4 code, | |
| h5 code, | |
| h6 code { | |
| font-size: inherit; | |
| line-height: auto; | |
| } | |
| a:hover { | |
| color: #4080D0; | |
| text-decoration: underline; | |
| } | |
| table { | |
| border-collapse: collapse; | |
| } | |
| table > thead > tr > th { | |
| text-align: left; | |
| border-bottom: 1px solid; | |
| } | |
| table > thead > tr > th, | |
| table > thead > tr > td, | |
| table > tbody > tr > th, | |
| table > tbody > tr > td { | |
| padding: 5px 10px; | |
| } | |
| table > tbody > tr + tr > td { | |
| border-top: 1px solid; | |
| } | |
| blockquote { | |
| margin: 0 7px 0 5px; | |
| padding: 0 16px 0 10px; | |
| border-left: 5px solid; | |
| } | |
| code { | |
| font-family: Menlo, Monaco, Consolas, "Droid Sans Mono", "Courier New", monospace, "Droid Sans Fallback"; | |
| font-size: 14px; | |
| line-height: 19px; | |
| } | |
| body.wordWrap pre { | |
| white-space: pre-wrap; | |
| } | |
| .mac code { | |
| font-size: 12px; | |
| line-height: 18px; | |
| } | |
| pre:not(.hljs), | |
| pre.hljs code > div { | |
| padding: 16px; | |
| border-radius: 3px; | |
| overflow: auto; | |
| } | |
| pre { | |
| background-color: #f8f8f8; | |
| border: 1px solid #cccccc; | |
| border-radius: 3px; | |
| overflow-x: auto; | |
| white-space: pre-wrap; | |
| overflow-wrap: break-word; | |
| } | |
| pre:not(.hljs) { | |
| padding: 23px; | |
| line-height: 19px; | |
| } | |
| blockquote { | |
| background: rgba(127, 127, 127, 0.1); | |
| border-color: rgba(0, 122, 204, 0.5); | |
| } | |
| .emoji { | |
| height: 1.4em; | |
| } | |
| /* for inline code */ | |
| :not(pre):not(.hljs) > code { | |
| color: #C9AE75; /* Change the old color so it seems less like an error */ | |
| font-size: inherit; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment