This is the first push to this repo with my dotfiles
[dotfilesold/.git] / .config / Typora / themes / old-themes / github.css
1 :root {
2     --side-bar-bg-color: #fafafa;
3     --control-text-color: #777;
4 }
5
6 @include-when-export url(https://fonts.loli.net/css?family=Open+Sans:400italic,700italic,700,400&subset=latin,latin-ext);
7
8 @font-face {
9     font-family: 'Open Sans';
10     font-style: normal;
11     font-weight: normal;
12     src: local('Open Sans Regular'),url('./github/400.woff') format('woff');
13 }
14
15 @font-face {
16     font-family: 'Open Sans';
17     font-style: italic;
18     font-weight: normal;
19     src: local('Open Sans Italic'),url('./github/400i.woff') format('woff');
20 }
21
22 @font-face {
23     font-family: 'Open Sans';
24     font-style: normal;
25     font-weight: bold;
26     src: local('Open Sans Bold'),url('./github/700.woff') format('woff');
27 }
28
29 @font-face {
30     font-family: 'Open Sans';
31     font-style: italic;
32     font-weight: bold;
33     src: local('Open Sans Bold Italic'),url('./github/700i.woff') format('woff');
34 }
35
36 html {
37     font-size: 16px;
38 }
39
40 body {
41     font-family: "Open Sans","Clear Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
42     color: rgb(51, 51, 51);
43     line-height: 1.6;
44 }
45
46 #write {
47     max-width: 860px;
48         margin: 0 auto;
49         padding: 30px;
50     padding-bottom: 100px;
51 }
52 #write > ul:first-child,
53 #write > ol:first-child{
54     margin-top: 30px;
55 }
56
57 a {
58     color: #4183C4;
59 }
60 h1,
61 h2,
62 h3,
63 h4,
64 h5,
65 h6 {
66     position: relative;
67     margin-top: 1rem;
68     margin-bottom: 1rem;
69     font-weight: bold;
70     line-height: 1.4;
71     cursor: text;
72 }
73 h1:hover a.anchor,
74 h2:hover a.anchor,
75 h3:hover a.anchor,
76 h4:hover a.anchor,
77 h5:hover a.anchor,
78 h6:hover a.anchor {
79     text-decoration: none;
80 }
81 h1 tt,
82 h1 code {
83     font-size: inherit;
84 }
85 h2 tt,
86 h2 code {
87     font-size: inherit;
88 }
89 h3 tt,
90 h3 code {
91     font-size: inherit;
92 }
93 h4 tt,
94 h4 code {
95     font-size: inherit;
96 }
97 h5 tt,
98 h5 code {
99     font-size: inherit;
100 }
101 h6 tt,
102 h6 code {
103     font-size: inherit;
104 }
105 h1 {
106     padding-bottom: .3em;
107     font-size: 2.25em;
108     line-height: 1.2;
109     border-bottom: 1px solid #eee;
110 }
111 h2 {
112    padding-bottom: .3em;
113     font-size: 1.75em;
114     line-height: 1.225;
115     border-bottom: 1px solid #eee;
116 }
117 h3 {
118     font-size: 1.5em;
119     line-height: 1.43;
120 }
121 h4 {
122     font-size: 1.25em;
123 }
124 h5 {
125     font-size: 1em;
126 }
127 h6 {
128    font-size: 1em;
129     color: #777;
130 }
131 p,
132 blockquote,
133 ul,
134 ol,
135 dl,
136 table{
137     margin: 0.8em 0;
138 }
139 li>ol,
140 li>ul {
141     margin: 0 0;
142 }
143 hr {
144     height: 2px;
145     padding: 0;
146     margin: 16px 0;
147     background-color: #e7e7e7;
148     border: 0 none;
149     overflow: hidden;
150     box-sizing: content-box;
151 }
152
153 li p.first {
154     display: inline-block;
155 }
156 ul,
157 ol {
158     padding-left: 30px;
159 }
160 ul:first-child,
161 ol:first-child {
162     margin-top: 0;
163 }
164 ul:last-child,
165 ol:last-child {
166     margin-bottom: 0;
167 }
168 blockquote {
169     border-left: 4px solid #dfe2e5;
170     padding: 0 15px;
171     color: #777777;
172 }
173 blockquote blockquote {
174     padding-right: 0;
175 }
176 table {
177     padding: 0;
178     word-break: initial;
179 }
180 table tr {
181     border-top: 1px solid #dfe2e5;
182     margin: 0;
183     padding: 0;
184 }
185 table tr:nth-child(2n),
186 thead {
187     background-color: #f8f8f8;
188 }
189 table tr th {
190     font-weight: bold;
191     border: 1px solid #dfe2e5;
192     border-bottom: 0;
193     margin: 0;
194     padding: 6px 13px;
195 }
196 table tr td {
197     border: 1px solid #dfe2e5;
198     margin: 0;
199     padding: 6px 13px;
200 }
201 table tr th:first-child,
202 table tr td:first-child {
203     margin-top: 0;
204 }
205 table tr th:last-child,
206 table tr td:last-child {
207     margin-bottom: 0;
208 }
209
210 .CodeMirror-lines {
211     padding-left: 4px;
212 }
213
214 .code-tooltip {
215     box-shadow: 0 1px 1px 0 rgba(0,28,36,.3);
216     border-top: 1px solid #eef2f2;
217 }
218
219 .md-fences,
220 code,
221 tt {
222     border: 1px solid #e7eaed;
223     background-color: #f8f8f8;
224     border-radius: 3px;
225     padding: 0;
226     padding: 2px 4px 0px 4px;
227     font-size: 0.9em;
228 }
229
230 code {
231     background-color: #f3f4f4;
232     padding: 0 2px 0 2px;
233 }
234
235 .md-fences {
236     margin-bottom: 15px;
237     margin-top: 15px;
238     padding-top: 8px;
239     padding-bottom: 6px;
240 }
241
242
243 .md-task-list-item > input {
244   margin-left: -1.3em;
245 }
246
247 @media print {
248     html {
249         font-size: 13px;
250     }
251     table,
252     pre {
253         page-break-inside: avoid;
254     }
255     pre {
256         word-wrap: break-word;
257     }
258 }
259
260 .md-fences {
261         background-color: #f8f8f8;
262 }
263 #write pre.md-meta-block {
264         padding: 1rem;
265     font-size: 85%;
266     line-height: 1.45;
267     background-color: #f7f7f7;
268     border: 0;
269     border-radius: 3px;
270     color: #777777;
271     margin-top: 0 !important;
272 }
273
274 .mathjax-block>.code-tooltip {
275         bottom: .375rem;
276 }
277
278 .md-mathjax-midline {
279     background: #fafafa;
280 }
281
282 #write>h3.md-focus:before{
283         left: -1.5625rem;
284         top: .375rem;
285 }
286 #write>h4.md-focus:before{
287         left: -1.5625rem;
288         top: .285714286rem;
289 }
290 #write>h5.md-focus:before{
291         left: -1.5625rem;
292         top: .285714286rem;
293 }
294 #write>h6.md-focus:before{
295         left: -1.5625rem;
296         top: .285714286rem;
297 }
298 .md-image>.md-meta {
299     /*border: 1px solid #ddd;*/
300     border-radius: 3px;
301     padding: 2px 0px 0px 4px;
302     font-size: 0.9em;
303     color: inherit;
304 }
305
306 .md-tag {
307     color: #a7a7a7;
308     opacity: 1;
309 }
310
311 .md-toc { 
312     margin-top:20px;
313     padding-bottom:20px;
314 }
315
316 .sidebar-tabs {
317     border-bottom: none;
318 }
319
320 #typora-quick-open {
321     border: 1px solid #ddd;
322     background-color: #f8f8f8;
323 }
324
325 #typora-quick-open-item {
326     background-color: #FAFAFA;
327     border-color: #FEFEFE #e5e5e5 #e5e5e5 #eee;
328     border-style: solid;
329     border-width: 1px;
330 }
331
332 /** focus mode */
333 .on-focus-mode blockquote {
334     border-left-color: rgba(85, 85, 85, 0.12);
335 }
336
337 header, .context-menu, .megamenu-content, footer{
338     font-family: "Segoe UI", "Arial", sans-serif;
339 }
340
341 .file-node-content:hover .file-node-icon,
342 .file-node-content:hover .file-node-open-state{
343     visibility: visible;
344 }
345
346 .mac-seamless-mode #typora-sidebar {
347     background-color: #fafafa;
348     background-color: var(--side-bar-bg-color);
349 }
350
351 .md-lang {
352     color: #b4654d;
353 }
354
355 .html-for-mac .context-menu {
356     --item-hover-bg-color: #E6F0FE;
357 }
358
359 #md-notification .btn {
360     border: 0;
361 }
362
363 .dropdown-menu .divider {
364     border-color: #e5e5e5;
365 }
366
367 .ty-preferences .window-content {
368     background-color: #fafafa;
369 }
370
371 .ty-preferences .nav-group-item.active {
372     color: white;
373     background: #999;
374 }