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
|
@charset 'UTF-8';
/*
* jQuery File Upload Plugin CSS Example 1.1
* https://github.com/blueimp/jQuery-File-Upload
*
* Copyright 2012, Sebastian Tschan
* https://blueimp.net
*
* Licensed under the MIT license:
* http://www.opensource.org/licenses/MIT
*/
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 13px;
line-height: 18px;
width: 960px;
margin: 10px auto;
}
a {
color: #08C;
text-decoration: none;
}
a:hover,
.active a {
color: #005580;
text-decoration: underline;
}
td {
padding: 5px;
}
img {
border: 0;
}
.nav-collapse,
ul.nav,
ul.nav li {
display: inline-block;
margin-right: 10px;
}
.navbar .brand {
font-size: 16px;
}
.row {
zoom: 1;
}
.row:before, .row:after {
display: table;
content: "";
}
.row:after {
clear: both;
}
.span5 {
width: 400px;
float: left;
}
.span7 {
width: 560px ;
float: left;
}
/* Fix for IE 6: */
*html .nav-collapse,
*html ul.nav,
*html ul.nav li {
display: inline;
}
*html .navbar-fixed-top {
margin-bottom: 35px;
}
/* Fix for IE 7: */
*+html .nav-collapse,
*+html ul.nav,
*+html ul.nav li {
display: inline;
}
*+html .navbar-fixed-top {
margin-bottom: 35px;
}
@media (max-width: 980px) {
body {
width: auto;
padding: 10px;
}
.span5,
.span7 {
width: auto;
}
}
|