-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathglobal.css
151 lines (128 loc) · 2.65 KB
/
global.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
.markdown-body {
box-sizing: border-box;
min-width: 200px;
max-width: 980px;
margin: 0 auto;
padding: 15px;
}
@media (max-width: 767px) {
.markdown-body {
padding: 15px;
}
}
.markdown-body h2 {
font-size: 1.0em;
}
.markdown-body table th,
.markdown-body table td {
font-size: smaller;
}
pre code.hljs {
padding: initial;
}
html, body {
height: 100%;
margin: 0;
background-color: inherit !important;
}
.markdown-body .highlight pre,
.markdown-body pre {
background-color: var(--vscode-textBlockQuote-background) !important;
}
.markdown-body table th,
.markdown-body table td {
background-color: var(--vscode-textBlockQuote-background) !important;
}
.markdown-body table tr {
background-color: transparent;
}
.markdown-body table tr:nth-child(2n) {
background-color: transparent;
}
.markdown-body h1,
.markdown-body h2,
.markdown-body h3,
.markdown-body h4,
.markdown-body h5,
.markdown-body h6 {
margin-top: 10px;
margin-bottom: 10px;
}
.content {
padding-bottom: 30px;
padding-top: 10px;
}
header {
position: fixed;
font-size: 10pt;
left: 0;
top: 0;
width: 100%;
height: 20px;
border-bottom: 1px solid var(--vscode-tab-border);
padding-left: 20px;
text-align: center;
display: flex;
align-items: center;
color: var(--vscode-input-foreground);
}
footer {
position: fixed;
font-size: 10pt;
left: 0;
bottom: 0;
width: 100%;
height: 28px;
background-color: var(--vscode-titleBar-activeBackground);
padding: 5px;
margin-bottom: -9px;
text-align: center;
display: flex;
align-items: baseline;
color: var(--vscode-input-foreground);
}
footer .typedoclogo {
margin-left: 5px;
padding-left: 20px;
text-decoration: none;
height: 23px;
display: block;
background-image: url(typedoclogo.png);
background-size: 22%;
background-repeat: no-repeat;
background-position: left center;
color: var(--vscode-input-foreground);
}
.hint-panel {
background-color: var(--vscode-input-background);
padding: 5px;
font-size: 10pt;
margin: 0 0 10px 0;
}
.hint-panel > span {
color: var(--vscode-input-foreground);
background-image: url("infoicon.png");
background-repeat: no-repeat;
background-position: left center;
padding-left: 20px;
}
.display-flex {
display: flex;
}
.display-block {
display: block;
}
.display-none {
display: none;
}
.btn {
width: 13px;
height: 13px;
}
.btn-reload {
background-image: url("reload.png");
}
.btn-reload:hover {
text-decoration: none;
background-image: url("reload2.png");
}