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
|
<!doctype html>
<html>
<head>
<title>SJ EMBED TEST</title>
<style type="text/css">
html
{
height: 100%;
margin: 0; padding: 0;
}
body
{
margin: 0; padding: 0;
height: 100%;
width: 100%;
background-image: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(0.18, rgb(219,107,172)),
color-stop(0.59, rgb(255,186,238)),
color-stop(0.89, rgb(255,224,255))
);
background-image: -moz-linear-gradient(
center bottom,
rgb(219,107,172) 18%,
rgb(255,186,238) 59%,
rgb(255,224,255) 89%
);
}
#embedded
{
box-shadow: 0px 5px 10px #000;
position: fixed;
top: 100px;
right: 100px;
width: 250px;
height: 360px;
border: 0;
background-color: #000;
}
</style>
<body>
<iframe src="http://scannerjammer.com/main/embed/" id="embedded"></iframe>
</body>
</html>
|