-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcode.css
40 lines (39 loc) · 1.15 KB
/
code.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
pre {
position: relative;
/* background-color: var(--vscode-editor-background);
color: var(--vscode-editor-foreground);
border-radius: 6px;
margin-top: 10px; */
}
code {
font-family: var(--vscode-editor-font-family, 'Courier New', monospace);
background-color: var(--vscode-editor-background, #1e1e1e);
color: var(--vscode-editor-foreground, #d4d4d4);
border: 1px solid var(--vscode-editor-lineHighlightBackground, #2f2f2f);
border-left: 3px solid var(--vscode-editorCursor-foreground, #d4d4d4);
/* page-break-inside: avoid; */
font-size: var(--vscode-editor-font-size, 14px);
line-height: var(--vscode-editor-lineHeight, 1.5);
/* margin-bottom: 1em; */
/* max-width: 100%; */
/* overflow: auto; */
/* display: block; */
/* padding: 0.5em 1em; */
/* word-wrap: normal; */
/* white-space: pre-wrap; */
/* word-break: break-word; */
}
.copyButton {
width: max-content;
max-width: 100%;
cursor: pointer;
background-color: var(--vscode-button-background);
color: var(--vscode-button-foreground);
border: none;
border-radius: 3px;
padding: 5px 10px;
font-size: 12px;
position: absolute;
top: 0px;
right: 0px;
}