inleft
2022-08-16 c14e3278893b9dd1022aa488cee53a888c2a4c7e
commit | author | age
b505f3 1 .markdown-body{
I 2     body{
3          margin: 0 auto;
4          font-family: "Microsoft YaHei", arial,sans-serif;
5          color: #444444;
6          line-height: 1;
7          padding: 30px;
8      }
9      @media screen and (min-width: 768px) {
10          body {
11              width: 748px;
12              margin: 10px auto;
13          }
14      }
0b0125 15      
I 16     img{
17          max-width: -webkit-fill-available;
c14e32 18          display: inline;
I 19          box-shadow: 0 0 4px rgba(0,0,0,0.5);
20          overflow: visible;
21          border-radius: 12px;
22          -webkit-filter: drop-shadow(4px 4px 10px rgba(0,0,0,.5));
23          filter: drop-shadow(4px 4px 10px rgba(0,0,0,.5));
0b0125 24     }
b505f3 25     h1, h2, h3, h4 {
I 26         color: #111111;
27         font-weight: 400;
28         margin-top: 1em;
29     }
30     
31     h1, h2, h3, h4, h5 {
32         font-family: Georgia, Palatino, serif;
33     }
34     h1, h2, h3, h4, h5, p , dl{
35         margin-bottom: 16px;
36         padding: 0;
37     }
38     h1 {
39         font-size: 38px;
40         line-height: 54px;
41     }
42     h2 {
43         font-size: 36px;
44         line-height: 42px;
45     }
46     h1, h2 {
47         border-bottom: 1px solid #EFEAEA;
48         padding-bottom: 10px;
49     }
50     h3 {
51         font-size: 24px;
52         line-height: 30px;
53     }
54     h4 {
55         font-size: 21px;
56         line-height: 26px;
57     }
58     h5 {
59         font-size: 18px;
60         list-style: 23px;
61     }
62     a {
63         color: #0099ff;
64         margin: 0;
65         padding: 0;
66         vertical-align: baseline;
67     }
68     a:hover {
69         text-decoration: none;
70         color: #ff6600;
71     }
72     a:visited {
73         /*color: purple;*/
74     }
75     ul, ol {
76         padding: 0;
77         padding-left: 24px;
78         margin: 0;
79     }
80     li {
81         line-height: 24px;
82     }
83     p, ul, ol {
84         font-size: 16px;
85         line-height: 24px;
86     }
87     
88     ol ol, ul ol {
89         list-style-type: lower-roman;
90     }
91     
92     /*pre {
93         padding: 0px 24px;
94         max-width: 800px;
95         white-space: pre-wrap;
96     }
97     code {
98         font-family: Consolas, Monaco, Andale Mono, monospace;
99         line-height: 1.5;
100         font-size: 13px;
101     }*/
102     
103     code, pre {
104         border-radius: 3px;
105         background-color:#f7f7f7;
106         color: inherit;
107     }
108     
109     code {
110         font-family: Consolas, Monaco, Andale Mono, monospace;
111         margin: 0 2px;
112     }
113     
114     pre {
115         line-height: 1.7em;
116         overflow: auto;
117         padding: 6px 10px;
118         border-left: 5px solid #6CE26C;
119     }
120     
121     pre > code {
122         border: 0;
123         display: inline;
124         max-width: initial;
125         padding: 0;
126         margin: 0;
127         overflow: initial;
128         line-height: inherit;
129         font-size: .85em;
130         white-space: pre;
131         background: 0 0;
132     
133     }
134     
135     code {
136         color: #666555;
137     }
138     
139     
140     /** markdown preview plus 对于代码块的处理有些问题, 所以使用统一的颜色 */
141     /*code .keyword {
142       color: #8959a8;
143     }
144     
145     code .number {
146       color: #f5871f;
147     }
148     
149     code .comment {
150       color: #998
151     }*/
152     
153     aside {
154         display: block;
155         float: right;
156         width: 390px;
157     }
158     blockquote {
cb7779 159         border-left:.5em solid #cfcfcf;
b505f3 160         padding: 0 0 0 2em;
I 161         margin-left:0;
162     }
163     blockquote  cite {
164         font-size:14px;
165         line-height:20px;
166         color:#bfbfbf;
167     }
168     blockquote cite:before {
169         content: '\2014 \00A0';
170     }
171     
172     blockquote p {
173         color: #666;
174     }
175     hr {
176         text-align: left;
177         color: #999;
178         height: 2px;
179         padding: 0;
180         margin: 16px 0;
181         background-color: #e7e7e7;
182         border: 0 none;
183     }
184     
185     dl {
186         padding: 0;
187     }
188     
189     dl dt {
190         padding: 10px 0;
191         margin-top: 16px;
192         font-size: 1em;
193         font-style: italic;
194         font-weight: bold;
195     }
196     
197     dl dd {
198         padding: 0 16px;
199         margin-bottom: 16px;
200     }
201     
202     dd {
203         margin-left: 0;
204     }
205     
206     /* Code below this line is copyright Twitter Inc. */
207     
208     button,
209     input,
210     select,
211     textarea {
212         font-size: 100%;
213         margin: 0;
214         vertical-align: baseline;
215         *vertical-align: middle;
216     }
217     button, input {
218         line-height: normal;
219         *overflow: visible;
220     }
221     button::-moz-focus-inner, input::-moz-focus-inner {
222         border: 0;
223         padding: 0;
224     }
225     button,
226     input[type="button"],
227     input[type="reset"],
228     input[type="submit"] {
229         cursor: pointer;
230         -webkit-appearance: button;
231     }
232     input[type=checkbox], input[type=radio] {
233         cursor: pointer;
234     }
235     /* override default chrome & firefox settings */
236     input:not([type="image"]), textarea {
237         -webkit-box-sizing: content-box;
238         -moz-box-sizing: content-box;
239         box-sizing: content-box;
240     }
241     
242     input[type="search"] {
243         -webkit-appearance: textfield;
244         -webkit-box-sizing: content-box;
245         -moz-box-sizing: content-box;
246         box-sizing: content-box;
247     }
248     input[type="search"]::-webkit-search-decoration {
249         -webkit-appearance: none;
250     }
251     label,
252     input,
253     select,
254     textarea {
255         font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
256         font-size: 13px;
257         font-weight: normal;
258         line-height: normal;
259         margin-bottom: 18px;
260     }
261     input[type=checkbox], input[type=radio] {
262         cursor: pointer;
263         margin-bottom: 0;
264     }
265     input[type=text],
266     input[type=password],
267     textarea,
268     select {
269         display: inline-block;
270         width: 210px;
271         padding: 4px;
272         font-size: 13px;
273         font-weight: normal;
274         line-height: 18px;
275         height: 18px;
276         color: #808080;
277         border: 1px solid #ccc;
278         -webkit-border-radius: 3px;
279         -moz-border-radius: 3px;
280         border-radius: 3px;
281     }
282     select, input[type=file] {
283         height: 27px;
284         line-height: 27px;
285     }
286     textarea {
287         height: auto;
288     }
289     /* grey out placeholders */
290     :-moz-placeholder {
291         color: #bfbfbf;
292     }
293     ::-webkit-input-placeholder {
294         color: #bfbfbf;
295     }
296     input[type=text],
297     input[type=password],
298     select,
299     textarea {
300         -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
301         -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
302         transition: border linear 0.2s, box-shadow linear 0.2s;
303         -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
304         -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
305         box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
306     }
307     input[type=text]:focus, input[type=password]:focus, textarea:focus {
308         outline: none;
309         border-color: rgba(82, 168, 236, 0.8);
310         -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
311         -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
312         box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
313     }
314     /* buttons */
315     button {
316         display: inline-block;
317         padding: 4px 14px;
318         font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
319         font-size: 13px;
320         line-height: 18px;
321         -webkit-border-radius: 4px;
322         -moz-border-radius: 4px;
323         border-radius: 4px;
324         -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
325         -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
326         box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
327         background-color: #0064cd;
328         background-repeat: repeat-x;
329         background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
330         background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
331         background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
332         background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
333         background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
334         background-image: -o-linear-gradient(top, #049cdb, #0064cd);
335         background-image: linear-gradient(top, #049cdb, #0064cd);
336         color: #fff;
337         text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
338         border: 1px solid #004b9a;
339         border-bottom-color: #003f81;
340         -webkit-transition: 0.1s linear all;
341         -moz-transition: 0.1s linear all;
342         transition: 0.1s linear all;
343         border-color: #0064cd #0064cd #003f81;
344         border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
345     }
346     button:hover {
347         color: #fff;
348         background-position: 0 -15px;
349         text-decoration: none;
350     }
351     button:active {
352         -webkit-box-shadow: inset 0 3px 7px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
353         -moz-box-shadow: inset 0 3px 7px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
354         box-shadow: inset 0 3px 7px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
355     }
356     button::-moz-focus-inner {
357         padding: 0;
358         border: 0;
359     }
360     table {
361         *border-collapse: collapse; /* IE7 and lower */
362         border-spacing: 0;
363         width: 100%;
364     }
365     table {
366         border: solid #ccc 1px;
367         -moz-border-radius: 6px;
368         -webkit-border-radius: 6px;
369         border-radius: 6px;
370         /*-webkit-box-shadow: 0 1px 1px #ccc;
371         -moz-box-shadow: 0 1px 1px #ccc;
372         box-shadow: 0 1px 1px #ccc;   */
373     }
374     table tr:hover {
375         background: #fbf8e9;
376         -o-transition: all 0.1s ease-in-out;
377         -webkit-transition: all 0.1s ease-in-out;
378         -moz-transition: all 0.1s ease-in-out;
379         -ms-transition: all 0.1s ease-in-out;
380         transition: all 0.1s ease-in-out;
381     }
382     table td, .table th {
383         border-left: 1px solid #ccc;
384         border-top: 1px solid #ccc;
385         padding: 10px;
386         text-align: left;
387     }
388     
389     table th {
390         background-color: #dce9f9;
391         background-image: -webkit-gradient(linear, left top, left bottom, from(#ebf3fc), to(#dce9f9));
392         background-image: -webkit-linear-gradient(top, #ebf3fc, #dce9f9);
393         background-image:    -moz-linear-gradient(top, #ebf3fc, #dce9f9);
394         background-image:     -ms-linear-gradient(top, #ebf3fc, #dce9f9);
395         background-image:      -o-linear-gradient(top, #ebf3fc, #dce9f9);
396         background-image:         linear-gradient(top, #ebf3fc, #dce9f9);
397         /*-webkit-box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
398         -moz-box-shadow:0 1px 0 rgba(255,255,255,.8) inset;
399         box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;*/
400         border-top: none;
401         text-shadow: 0 1px 0 rgba(255,255,255,.5);
402         padding: 5px;
403     }
404     
405     table td:first-child, table th:first-child {
406         border-left: none;
407     }
408     
409     table th:first-child {
410         -moz-border-radius: 6px 0 0 0;
411         -webkit-border-radius: 6px 0 0 0;
412         border-radius: 6px 0 0 0;
413     }
414     table th:last-child {
415         -moz-border-radius: 0 6px 0 0;
416         -webkit-border-radius: 0 6px 0 0;
417         border-radius: 0 6px 0 0;
418     }
419     table th:only-child{
420         -moz-border-radius: 6px 6px 0 0;
421         -webkit-border-radius: 6px 6px 0 0;
422         border-radius: 6px 6px 0 0;
423     }
424     table tr:last-child td:first-child {
425         -moz-border-radius: 0 0 0 6px;
426         -webkit-border-radius: 0 0 0 6px;
427         border-radius: 0 0 0 6px;
428     }
429     table tr:last-child td:last-child {
430         -moz-border-radius: 0 0 6px 0;
431         -webkit-border-radius: 0 0 6px 0;
432         border-radius: 0 0 6px 0;
433     }
434     
435 }