blob: 7f0f55e86ddeafa9f78e62b082ca3f5fac30c089 (
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
/* $Id$ */
#imageHeaderBar {
padding-top: 2px;
padding-bottom: 2px;
margin-top: 4px;
overflow: hidden;
width: 100%;
}
#imageHeaderBar .browsePath {
float: left;
margin-left: 10px;
}
#imageHeaderBar .imageNumber {
float: right;
margin-right: 10px;
}
#imageHeaderBar H2 {
text-align: center;
padding: 0;
clear: both;
}
#imageToolBar {
text-align: center;
position: relative;
clear: both;
margin-bottom: 4px;
padding: 0;
height: 28px;
}
#imageToolBar A, #imageToolBar IMG {
display: block;
border: none;
margin: 0; padding: 0;
}
#imageToolBar A { width: 48px; }
#imageToolBar IMG { margin: 2px auto; }
#imageToolBar .randomButtons A { float: left; }
#imageToolBar .navButtons A { float: right; }
#theImage {
clear: left;
text-align: center;
}
#theImage>IMG {
display: block;
margin: 0 auto;
border: none;
}
#linkPrev {
float: left;
margin-right: 10px;
margin-left: 5px;
}
#linkNext {
float: right;
margin-right: 5px;
margin-left: 10px;
}
TABLE.infoTable .label {
font-weight: bold;
text-align: right;
padding-right: 0.5em;
}
TABLE.infoTable TD.value UL {
margin: 0;
padding: 0 0 0 1.5em;
list-style-type: square;
}
.thumbnailCategories LI { list-style: none; }
.rateButton, .rateButtonSelected, .rateButtonStarFull, .rateButtonStarEmpty {
padding:0;
border:0;
}
.rateButton, .rateButtonStarFull, .rateButtonStarEmpty {
cursor: pointer;
}
.rateButtonSelected {
font-weight:bold;
font-size:120%;
}
.rateButtonStarFull {
background: url('icon/rating-stars.gif') no-repeat scroll; background-position:-16px center; width:16px;
}
.rateButtonStarEmpty {
background: url('icon/rating-stars.gif') no-repeat scroll; background-position:0 center; width:16px;
}
|