404
|
1 /* Styles for Digilib NG */
|
|
2 /* (c) 2005 by Martin Raspe <hertzhaft@biblhertz.it> */
|
|
3 /* Bibliotheca Hertziana (Max-Planck-Institute for Art History), Rome */
|
|
4
|
|
5 body {
|
|
6 background-color: #E0E0E0;
|
|
7 color: black;
|
|
8 font-size: 8pt;
|
|
9 }
|
|
10
|
|
11 code {
|
|
12 font-family: monospace;
|
|
13 color: blue;
|
|
14 }
|
|
15
|
|
16 pre { color: #006060; }
|
|
17
|
|
18
|
|
19 a.icon {
|
|
20 margin: 0px;
|
|
21 padding: 0px;
|
|
22 }
|
|
23
|
411
|
24 a.arrow {
|
|
25 display: block;
|
|
26 position: absolute;
|
|
27 border: none;
|
|
28 z-index: 150;
|
|
29 background-repeat: no-repeat;
|
424
|
30 background-position: center;
|
411
|
31 }
|
428
|
32
|
411
|
33 a#up:hover {
|
|
34 background-image: url('up.png');
|
|
35 }
|
|
36
|
|
37 a#down:hover {
|
|
38 background-image: url('down.png');
|
|
39 }
|
|
40
|
|
41 a#left:hover {
|
|
42 background-image: url('left.png');
|
|
43 }
|
|
44
|
|
45 a#right:hover {
|
|
46 background-image: url('right.png');
|
|
47 }
|
|
48
|
404
|
49 /* Images */
|
|
50
|
|
51 img.logo {
|
|
52 border: none;
|
|
53 }
|
|
54
|
|
55 img.png {
|
|
56 border: none;
|
|
57 }
|
411
|
58
|
404
|
59 img.png:hover {
|
|
60 background-image: url('corona.png');
|
|
61 }
|
411
|
62
|
|
63 img#bird-image {
|
|
64 border: none;
|
|
65 position: absolute;
|
|
66 bottom: 10px;
|
|
67 right: 10px;
|
|
68 visibility: hidden;
|
|
69 z-index: 1;
|
|
70 }
|
404
|
71
|
|
72 /* DIVs */
|
|
73
|
|
74 div.button {
|
|
75 padding: 0px;
|
|
76 }
|
|
77
|
|
78 div.mark {
|
|
79 position: absolute;
|
|
80 color: white;
|
|
81 background: url('mark-bg-16.png');
|
|
82 font-family: Verdana, Arial, Helvetica, sans-serif;
|
|
83 font-weight: bold;
|
|
84 font-size:11px;
|
|
85 height: 16px;
|
|
86 width: 16px;
|
|
87 text-align: center;
|
|
88 z-index: 10;
|
|
89 /* filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='mark-bg-16.png') */
|
|
90 }
|
|
91
|
|
92 div#scaler-table {
|
|
93 padding-right: 40px;
|
|
94 }
|
|
95
|
|
96 div#overlay {
|
|
97 position: absolute;
|
428
|
98 background-color: transparent;
|
|
99 border: 1px dotted lightcyan;
|
411
|
100 z-index: 100;
|
404
|
101 visibility: hidden;
|
411
|
102 box-sizing: border-box;
|
|
103 -moz-box-sizing: border-box;
|
404
|
104 }
|
|
105
|
|
106 div#buttons {
|
|
107 position: absolute;
|
|
108 right: 5px;
|
|
109 top: 5px;
|
|
110 background-color: #E0E0E0;
|
|
111 }
|
|
112
|
|
113 div#dloptions {
|
|
114 position: absolute;
|
|
115 right: 5px;
|
|
116 top: 5px;
|
|
117 background-color: #E0E0E0;
|
|
118 visibility: hidden;
|
|
119 }
|
|
120
|
|
121 div#zoom {
|
|
122 position: absolute;
|
411
|
123 border: 2px solid #ffa060;
|
|
124 visibility: hidden;
|
|
125 z-index: 200;
|
|
126 box-sizing: border-box;
|
|
127 -moz-box-sizing: border-box;
|
|
128 }
|
|
129
|
|
130 div#bird-area {
|
|
131 position: absolute;
|
|
132 border: 2px solid #ffa060;
|
|
133 visibility: hidden;
|
|
134 background-color: transparent;
|
|
135 box-sizing: border-box;
|
|
136 -moz-box-sizing: border-box;
|
|
137 z-index: 10;
|
|
138 }
|
404
|
139
|
428
|
140 div#calibration {
|
|
141 position: absolute;
|
|
142 padding: 0px 2px;
|
|
143 font-family: Verdana, Arial, Helvetica, sans-serif;
|
|
144 border: 3px solid lightcyan;
|
|
145 background-color: lightgrey;
|
|
146 text-align: center;
|
|
147 visibility: hidden;
|
|
148 z-index: 1000;
|
|
149 }
|
|
150
|
404
|
151 div#about {
|
|
152 position: absolute;
|
|
153 width: 200px;
|
|
154 top: 100px;
|
|
155 left: 350px;
|
|
156 height: 200px;
|
|
157 padding: 0px 2px;
|
|
158 font-family: Verdana, Arial, Helvetica, sans-serif;
|
|
159 border: 3px solid lightcyan;
|
|
160 background-color: lightgrey;
|
|
161 text-align: center;
|
|
162 visibility: hidden;
|
|
163 z-index: 1000;
|
|
164 }
|
|
165
|
428
|
166 div#about p {
|
|
167 margin: 6px;
|
|
168 }
|
|
169
|
|
170
|
404
|
171 /* DEBUG elements */
|
|
172
|
|
173 div#debug {
|
|
174 position: absolute;
|
428
|
175 width: 150px;
|
|
176 top: 50px;
|
|
177 right: 36px;
|
|
178 bottom: 50px;
|
404
|
179 overflow: auto;
|
|
180 padding: 0px 2px;
|
|
181 font-family: Verdana, Arial, Helvetica, sans-serif;
|
428
|
182 color: green;
|
404
|
183 border: 1px dotted lightcyan;
|
411
|
184 background-color: transparent;
|
404
|
185 }
|
|
186
|
411
|
187 div#debug p.debug, h1 {
|
404
|
188 font-weight: bold;
|
|
189 color: lightcyan;
|
|
190 }
|
|
191
|
411
|
192 div#debug p, h1 {
|
|
193 margin: 0px;
|
|
194 padding: 2px 0px;
|
|
195 font-size: 9px;
|
|
196 }
|
404
|
197
|