blob: 7403454031321b100a6293061b1c4006e84ea28b (
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
|
html { overflow: hidden; }
body {
margin: 0px;
padding: 0px;
background: #111;
position: absolute;
width: 100%;
height: 100%;
background:#f0f9ff url(/static/img/fade-blue.png) top left repeat-x fixed;
cursor: crosshair;
}
#canvas {
position:absolute;
left: 0%;
top: 0%;
width: 100%;
height: 100%;
overflow: hidden;
}
#canvas img {
position: absolute;
background: #666;
overflow: hidden;
cursor: pointer;
left: 100%;
border-color: #000;
border-style: solid;
border-width: 1px;
-ms-interpolation-mode:nearest-neighbor;
}
#canvas span {
position: absolute;
color: #9C9;
font-family: 'courier new', typewriter, matrix, monospace;
font-size: 0px;
white-space: nowrap;
left: -1000px;
background: #010;
filter: alpha(opacity=90);
opacity: 0.9;
}
#infotxt{
font-family: 'courier new', typewriter, matrix, monospace;
line-height:16px;
background-image:url(/static/img/bg.dither.gif);
width:230px;
padding:10px;
padding-bottom:14px;
font-size:12px;
border-bottom-right-radius:100px;
-webkit-border-bottom-right-radius:100px;
-moz-border-radius-bottomright:100px;
}
.returnlink{
text-decoration:none;
font-family: Arial, Helvetica, sans-serif;
color:#f0e;
}
.returnlink a:hover{
text-decoration:none;
font-family: Arial, Helvetica, sans-serif;
color:blue;
}
|