Mercurial > hg > digilib-old
annotate client/digitallibrary/jquery/jquery.digilib.css @ 829:a630d0303cce stream
new servlet operation colop=grayscale.
author | robcast |
---|---|
date | Fri, 25 Feb 2011 11:34:49 +0100 |
parents | 8af71d9d830b |
children | e4133946a9ad |
rev | line source |
---|---|
725 | 1 /* |
2 * CSS style file for jQuery digilib | |
3 * | |
4 * Martin Raspe, Robert Casties, 11.1.2011 | |
5 */ | |
6 div.digilib div.scaler { | |
7 background-color: grey; | |
8 z-index: 0; | |
746
2e9a48dc7a0c
move zoom-drag background along with birdview indicator
hertzhaft
parents:
726
diff
changeset
|
9 width: 0px; |
2e9a48dc7a0c
move zoom-drag background along with birdview indicator
hertzhaft
parents:
726
diff
changeset
|
10 height: 0px; |
725 | 11 } |
12 | |
13 div.digilib div.birdview { | |
14 border: 1px solid white; | |
15 z-index: 10; | |
16 } | |
17 | |
18 div.digilib div.zoomrect { | |
19 position: absolute; | |
20 border: 2px solid #ff0000; | |
21 z-index: 100; | |
22 } | |
23 | |
726 | 24 div.digilib div.birdzoom { |
25 position: absolute; | |
26 border: 2px solid #ff0000; | |
27 z-index: 100; | |
28 } | |
29 | |
725 | 30 div.digilib div.mark { |
31 position: absolute; | |
32 color: white; | |
33 background: url('../greyskin/mark-bg-16.png'); | |
34 font-family: Verdana, Arial, Helvetica, sans-serif; | |
35 font-weight: bold; | |
36 font-size: 11px; | |
37 height: 15px; | |
38 width: 16px; | |
39 padding-top: 1px; | |
40 text-align: center; | |
41 z-index: 10; | |
42 } | |
43 | |
44 div.digilib div.about { | |
45 position: absolute; | |
46 width: 200px; | |
47 top: 100px; | |
48 left: 350px; | |
49 height: 200px; | |
50 padding: 0px 2px; | |
51 font-family: Verdana, Arial, Helvetica, sans-serif; | |
52 border: 2px solid lightcyan; | |
53 background-color: lightgrey; | |
54 text-align: center; | |
55 display: none; | |
56 z-index: 1000; | |
57 } | |
58 | |
792 | 59 div.digilib div.region { |
813 | 60 position: absolute; |
792 | 61 background-color: red; |
813 | 62 opacity: 0.3; |
63 } | |
64 | |
65 div.digilib div.region:hover { | |
792 | 66 opacity: 0.5; |
67 } | |
68 | |
823 | 69 div.regionnumber a { |
813 | 70 color: white; |
823 | 71 text-decoration: none; |
813 | 72 font-size: 11px; |
73 font-weight: bold; | |
74 height: 15px; | |
75 width: 16px; | |
76 margin: 3px; | |
77 } | |
78 | |
818
eff74cfaaf97
read regions from HTML (not working yet), show info
hertzhaft
parents:
813
diff
changeset
|
79 div.regioncontent { |
eff74cfaaf97
read regions from HTML (not working yet), show info
hertzhaft
parents:
813
diff
changeset
|
80 display: none; |
823 | 81 padding: 3px; |
82 } | |
83 | |
84 div.regioncontent a { | |
85 color: white; | |
86 text-decoration: none; | |
87 font-size: 11px; | |
88 font-weight: bold; | |
818
eff74cfaaf97
read regions from HTML (not working yet), show info
hertzhaft
parents:
813
diff
changeset
|
89 } |
eff74cfaaf97
read regions from HTML (not working yet), show info
hertzhaft
parents:
813
diff
changeset
|
90 |
eff74cfaaf97
read regions from HTML (not working yet), show info
hertzhaft
parents:
813
diff
changeset
|
91 div.regioninfo { |
eff74cfaaf97
read regions from HTML (not working yet), show info
hertzhaft
parents:
813
diff
changeset
|
92 display: none; |
eff74cfaaf97
read regions from HTML (not working yet), show info
hertzhaft
parents:
813
diff
changeset
|
93 color: white; |
eff74cfaaf97
read regions from HTML (not working yet), show info
hertzhaft
parents:
813
diff
changeset
|
94 background-color: black; |
eff74cfaaf97
read regions from HTML (not working yet), show info
hertzhaft
parents:
813
diff
changeset
|
95 } |
eff74cfaaf97
read regions from HTML (not working yet), show info
hertzhaft
parents:
813
diff
changeset
|
96 |
725 | 97 /* special definitions for fullscreen */ |
98 div.digilib.dl_fullscreen div.buttons { | |
99 position: fixed; | |
100 right: 0px; | |
101 top: 0px; | |
102 padding: 2px; | |
103 background-color: transparent; | |
104 z-index: 100; | |
105 } | |
106 | |
107 div.digilib.dl_fullscreen div.button:hover { | |
770 | 108 background-image: url('img/fullscreen/corona.png'); |
725 | 109 } |
110 | |
765 | 111 div.digilib.dl_fullscreen div.button-on { |
770 | 112 background-image: url('img/fullscreen/whitedisc.png'); |
765 | 113 } |
114 | |
725 | 115 div.digilib.dl_fullscreen div.birdview { |
116 position: fixed; | |
117 bottom: 8px; | |
118 right: 48px; | |
119 } | |
120 | |
121 /* special definitions for embedded */ | |
122 div.digilib.dl_embedded { | |
123 position: relative; | |
124 } | |
125 | |
126 div.digilib.dl_embedded div.buttons { | |
127 position: absolute; | |
128 right: 0px; | |
129 top: 0px; | |
130 padding: 1px; | |
131 background-color: grey; | |
132 opacity: 0.4; | |
133 z-index: 100; | |
134 } | |
135 | |
136 div.digilib.dl_embedded div.button:hover { | |
137 background-color: darkred; | |
138 } | |
139 | |
765 | 140 div.digilib.dl_embedded div.button-on { |
141 background-color: black; | |
142 } | |
143 | |
725 | 144 div.digilib.dl_embedded div.birdview { |
145 position: absolute; | |
146 bottom: 0px; | |
147 right: 0px; | |
726 | 148 } |