Mercurial > hg > digilib-old
annotate client/digitallibrary/jquery/jquery.digilib.css @ 826:980661e00372 stream
new default fullscreen page (uses automagic host selection)
author | robcast |
---|---|
date | Wed, 23 Feb 2011 16:00:07 +0100 |
parents | 1a7b14deae3a |
children | eff74cfaaf97 |
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 | |
813 | 69 div.regionnumber { |
70 color: white; | |
71 font-size: 11px; | |
72 font-weight: bold; | |
73 height: 15px; | |
74 width: 16px; | |
75 margin: 3px; | |
76 } | |
77 | |
725 | 78 /* special definitions for fullscreen */ |
79 div.digilib.dl_fullscreen div.buttons { | |
80 position: fixed; | |
81 right: 0px; | |
82 top: 0px; | |
83 padding: 2px; | |
84 background-color: transparent; | |
85 z-index: 100; | |
86 } | |
87 | |
88 div.digilib.dl_fullscreen div.button:hover { | |
770 | 89 background-image: url('img/fullscreen/corona.png'); |
725 | 90 } |
91 | |
765 | 92 div.digilib.dl_fullscreen div.button-on { |
770 | 93 background-image: url('img/fullscreen/whitedisc.png'); |
765 | 94 } |
95 | |
725 | 96 div.digilib.dl_fullscreen div.birdview { |
97 position: fixed; | |
98 bottom: 8px; | |
99 right: 48px; | |
100 } | |
101 | |
102 /* special definitions for embedded */ | |
103 div.digilib.dl_embedded { | |
104 position: relative; | |
105 } | |
106 | |
107 div.digilib.dl_embedded div.buttons { | |
108 position: absolute; | |
109 right: 0px; | |
110 top: 0px; | |
111 padding: 1px; | |
112 background-color: grey; | |
113 opacity: 0.4; | |
114 z-index: 100; | |
115 } | |
116 | |
117 div.digilib.dl_embedded div.button:hover { | |
118 background-color: darkred; | |
119 } | |
120 | |
765 | 121 div.digilib.dl_embedded div.button-on { |
122 background-color: black; | |
123 } | |
124 | |
725 | 125 div.digilib.dl_embedded div.birdview { |
126 position: absolute; | |
127 bottom: 0px; | |
128 right: 0px; | |
726 | 129 } |