blob: 13298f113f8f767f707374bffe612f37aa455624 (
plain)
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
|
body {
background:#ddd;
}
#header {
background:#1d2d44;
box-shadow:0 0 10px rgba(0,0,0,.5), inset 0 -2px 10px #222;
height:2.5em;
left:0;
line-height:2.5em;
position:fixed;
right:0;
top:0;
z-index:100;
padding:.5em;
}
#details {
color:#fff;
}
#header #download {
font-weight:700;
margin-left:2em;
}
#header #download img {
padding-left:.1em;
padding-right:.3em;
vertical-align:text-bottom;
}
#preview {
background:#eee;
border-bottom:1px solid #f8f8f8;
min-height:30em;
text-align:center;
margin:45px auto;
}
#noPreview {
display:none;
padding-top:5em;
}
p.info {
color:#777;
text-align:center;
text-shadow:#fff 0 1px 0;
width:22em;
margin:2em auto;
}
p.info a {
color:#777;
font-weight:700;
}
#imgframe {
height:75%;
padding-bottom:2em;
padding-top:2em;
width:80%;
margin:0 auto;
}
#imgframe img {
max-height:100%;
max-width:100%;
}
thead{
background-color: white;
padding-left:0 !important; /* fixes multiselect bar offset on shared page */
}
|