forked from cangzhang/coding-vscode
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.css
77 lines (67 loc) · 1.6 KB
/
index.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu',
'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
margin: 0;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
}
#root {
padding: 1em;
}
textarea,
input[type='text'] {
display: block;
box-sizing: border-box;
padding: 10px;
width: 100%;
resize: vertical;
font-size: 13px;
border: 1px solid var(--vscode-dropdown-border);
background-color: var(--vscode-input-background);
color: var(--vscode-input-foreground);
font-family: var(--vscode-editor-font-family);
}
textarea {
min-height: 100px;
max-height: 500px;
}
textarea:focus {
outline: 1px solid var(--vscode-focusBorder);
}
button.colored {
background-color: var(--vscode-button-background);
color: var(--vscode-button-foreground);
border-radius: 0px;
border: 1px solid transparent;
outline: none;
padding: 4px 12px;
font-size: 13px;
line-height: 18px;
white-space: nowrap;
user-select: none;
cursor: pointer;
opacity: 0.9;
}
button.colored:hover {
opacity: 1;
}
button.colored.secondary {
background-color: var(--vscode-button-secondaryBackground);
color: var(--vscode-button-secondaryForeground);
}
button.colored:disabled {
cursor: not-allowed;
opacity: 0.5;
}
#status {
box-sizing: border-box;
line-height: 18px;
background: var(--vscode-badge-background);
color: var(--vscode-badge-foreground);
border-radius: 4px;
padding: 2px 8px;
margin-right: 12px;
}