Administrator
2022-09-14 58d006e05dcf2a20d0ec5367dd03d66a61db6849
提交 | 用户 | 时间
58d006 1 @charset "UTF-8";
A 2 /*
3  * jQuery File Upload Demo CSS 1.1.0
4  * https://github.com/blueimp/jQuery-File-Upload
5  *
6  * Copyright 2013, Sebastian Tschan
7  * https://blueimp.net
8  *
9  * Licensed under the MIT license:
10  * http://www.opensource.org/licenses/MIT
11  */
12
13 body {
14   max-width: 750px;
15   margin: 0 auto;
16   padding: 1em;
17   font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, sans-serif;
18   font-size: 1em;
19   line-height: 1.4em;
20   background: #222;
21   color: #fff;
22   -webkit-text-size-adjust: 100%;
23       -ms-text-size-adjust: 100%;
24 }
25 a {
26   color: orange;
27   text-decoration: none;
28 }
29 img {
30   border: 0;
31   vertical-align: middle;
32 }
33 h1 {
34   line-height: 1em;
35 }
36 blockquote {
37   padding: 0 0 0 15px;
38   margin: 0 0 20px;
39   border-left: 5px solid #eee;
40 }
41 table {
42   width: 100%;
43   margin: 10px 0;
44 }
45
46 .fileupload-progress {
47     margin: 10px 0;
48 }
49 .fileupload-progress .progress-extended {
50     margin-top: 5px;
51 }
52 .error {
53   color: red;
54 }
55
56 @media (min-width: 481px) {
57   .navigation {
58     list-style: none;
59     padding: 0;
60   }
61   .navigation li {
62     display: inline-block;
63   }
64   .navigation li:not(:first-child):before {
65     content: "| ";
66   }
67 }