Path: blob/main/extensions/markdown-language-features/media/markdown.css
3291 views
/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45html, body {6font-family: var(--markdown-font-family, -apple-system, BlinkMacSystemFont, "Segoe WPC", "Segoe UI", system-ui, "Ubuntu", "Droid Sans", sans-serif);7font-size: var(--markdown-font-size, 14px);8padding: 0 26px;9line-height: var(--markdown-line-height, 22px);10word-wrap: break-word;11}1213body {14padding-top: 1em;15}1617/* Reset margin top for elements */18h1, h2, h3, h4, h5, h6,19p, ol, ul, pre {20margin-top: 0;21}2223h1, h2, h3, h4, h5, h6 {24font-weight: 600;25margin-top: 24px;26margin-bottom: 16px;27line-height: 1.25;28}2930#code-csp-warning {31position: fixed;32top: 0;33right: 0;34color: white;35margin: 16px;36text-align: center;37font-size: 12px;38font-family: sans-serif;39background-color:#444444;40cursor: pointer;41padding: 6px;42box-shadow: 1px 1px 1px rgba(0,0,0,.25);43}4445#code-csp-warning:hover {46text-decoration: none;47background-color:#007acc;48box-shadow: 2px 2px 2px rgba(0,0,0,.25);49}5051body.scrollBeyondLastLine {52margin-bottom: calc(100vh - 22px);53}5455body.showEditorSelection .code-line {56position: relative;57}5859body.showEditorSelection :not(tr,ul,ol).code-active-line:before,60body.showEditorSelection :not(tr,ul,ol).code-line:hover:before {61content: "";62display: block;63position: absolute;64top: 0;65left: -12px;66height: 100%;67}6869.vscode-high-contrast.showEditorSelection :not(tr,ul,ol).code-line .code-line:hover:before {70border-left: none;71}7273body.showEditorSelection li.code-active-line:before,74body.showEditorSelection li.code-line:hover:before {75left: -30px;76}7778.vscode-light.showEditorSelection .code-active-line:before {79border-left: 3px solid rgba(0, 0, 0, 0.15);80}8182.vscode-light.showEditorSelection .code-line:hover:before {83border-left: 3px solid rgba(0, 0, 0, 0.40);84}8586.vscode-dark.showEditorSelection .code-active-line:before {87border-left: 3px solid rgba(255, 255, 255, 0.4);88}8990.vscode-dark.showEditorSelection .code-line:hover:before {91border-left: 3px solid rgba(255, 255, 255, 0.60);92}9394.vscode-high-contrast.showEditorSelection .code-active-line:before {95border-left: 3px solid rgba(255, 160, 0, 0.7);96}9798.vscode-high-contrast.showEditorSelection .code-line:hover:before {99border-left: 3px solid rgba(255, 160, 0, 1);100}101102/* Prevent `sub` and `sup` elements from affecting line height */103sub,104sup {105line-height: 0;106}107108ul ul:first-child,109ul ol:first-child,110ol ul:first-child,111ol ol:first-child {112margin-bottom: 0;113}114115img, video {116max-width: 100%;117max-height: 100%;118}119120a {121text-decoration: none;122}123124a:hover {125text-decoration: underline;126}127128a:focus,129input:focus,130select:focus,131textarea:focus {132outline: 1px solid -webkit-focus-ring-color;133outline-offset: -1px;134}135136p {137margin-bottom: 16px;138}139140li p {141margin-bottom: 0.7em;142}143144ul,145ol {146margin-bottom: 0.7em;147}148149hr {150border: 0;151height: 1px;152border-bottom: 1px solid;153}154155h1 {156font-size: 2em;157margin-top: 0;158padding-bottom: 0.3em;159border-bottom-width: 1px;160border-bottom-style: solid;161}162163h2 {164font-size: 1.5em;165padding-bottom: 0.3em;166border-bottom-width: 1px;167border-bottom-style: solid;168}169170h3 {171font-size: 1.25em;172}173174h4 {175font-size: 1em;176}177178h5 {179font-size: 0.875em;180}181182h6 {183font-size: 0.85em;184}185186table {187border-collapse: collapse;188margin-bottom: 0.7em;189}190191th {192text-align: left;193border-bottom: 1px solid;194}195196th,197td {198padding: 5px 10px;199}200201table > tbody > tr + tr > td {202border-top: 1px solid;203}204205blockquote {206margin: 0;207padding: 0px 16px 0 10px;208border-left-width: 5px;209border-left-style: solid;210border-radius: 2px;211}212213code {214font-family: var(--vscode-editor-font-family, "SF Mono", Monaco, Menlo, Consolas, "Ubuntu Mono", "Liberation Mono", "DejaVu Sans Mono", "Courier New", monospace);215font-size: 1em;216line-height: 1.357em;217}218219body.wordWrap pre {220white-space: pre-wrap;221}222223pre:not(.hljs),224pre.hljs code > div {225padding: 16px;226border-radius: 3px;227overflow: auto;228}229230pre code {231display: inline-block;232color: var(--vscode-editor-foreground);233tab-size: 4;234background: none;235}236237/** Theming */238239pre {240background-color: var(--vscode-textCodeBlock-background);241border: 1px solid var(--vscode-widget-border);242}243244.vscode-high-contrast h1 {245border-color: rgb(0, 0, 0);246}247248.vscode-light th {249border-color: rgba(0, 0, 0, 0.69);250}251252.vscode-dark th {253border-color: rgba(255, 255, 255, 0.69);254}255256.vscode-light h1,257.vscode-light h2,258.vscode-light hr,259.vscode-light td {260border-color: rgba(0, 0, 0, 0.18);261}262263.vscode-dark h1,264.vscode-dark h2,265.vscode-dark hr,266.vscode-dark td {267border-color: rgba(255, 255, 255, 0.18);268}269270271