-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
73 lines (73 loc) · 1.72 KB
/
style.css
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
div.panoview_plugin {
position: relative;
top: 0;
left: 0;
border: solid 1px __border__;
background-color: #000;
}
div.panoview_plugin .well, div.panoview_plugin .surface {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
position: absolute;
top: 0px;
left: 0px;
/* FIXME: let's apply this in GSV.js */
/*cursor: grab;*/
cursor: -moz-grab;
_cursor: url(gfx/grab.cur);
}
div.panoview_plugin .surface {
z-index: 20;
/*background: url(../gfx/center.gif) no-repeat center center;*/
_background: url(gfx/blank.gif) no-repeat center center; /* NOTE: required for IE to"see" the surface */
}
div.panoview_plugin .well {
overflow: hidden;
z-index: 10;
}
div.panoview_plugin .well .tile
{
border: 0;
margin: 0;
padding: 0;
position: absolute;
top: 0px;
left: 0px;
display: block;
/*-moz-outline: 1px dashed #FF0000;*/
}
div.panoview_plugin .controls
{
background-color: #FFFFFF;
position: absolute;
/* NOTE: the right and bottom can be adjusted when initialized */
right: 1px;
bottom: 1px;
width: 44px;
height: 20px;
margin: 0;
padding: 0 0 0 4px;
font-size: 12px;
line-height: 20px;
vertical-align: middle;
font-weight: bold;
border: 1px solid __border__;
z-index: 30;
opacity: 0.8;
}
div.panoview_plugin .controls a, div.panoview_plugin .controls span
{
color: #000000;
text-decoration: none;
-moz-outline: none;
cursor: pointer;
}
div.panoview_plugin .controls a img, div.panoview_plugin .controls span img {
border: 0;
vertical-align: middle;
}
div.panoview_plugin .controls a:active, div.panoview_plugin .controls span:active {
color: #FF0000;
}