styles.css
774 Bytes
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
.device-skin
{
font-size: 12px; /* Sets the zoom level */
}
.device-container.vertical .device-skin
{
background-image: url("images/vertical.png");
}
.device-container.horizontal .device-skin
{
background-image: url("images/horizontal.png");
}
.device-container.vertical
{
bottom: -250px;
left: -100px;
width: 1600px;
height: 1085px;
padding: 2.5cm 18.22cm 16cm 16.14cm;
}
.device-container.horizontal
{
bottom: -450px;
width: 1600px;
height: 1050px;
padding: .78cm 14.24cm 19.56cm 14.38cm;
left: -150px
}
.device-container.vertical iframe
{
height: 490px;
}
.device-container.horizontal iframe
{
height: 310px;
}
#address-bar
{
display: none;
}
.device-container #navigate-back
{
display: none;
}