blob: b70c52b782a888ac1434b4c531319a905b8a8ea2 (
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
body {
font-family: Verdana;
}
.meat {
width: 800px;
margin: 0 auto 0 auto;
}
h1 {
margin: 8px 0 16px 0;
width: 100%;
text-align: center;
}
.buttonBar a {
color: black;
text-decoration: none;
}
.buttonBar {
-webkit-border-top-right-radius: 15px 15px;
-webkit-border-top-left-radius: 15px 15px;
background-image: url(buttonbar.jpg);
width: 800px;
height: 170px;
}
.endBar {
-webkit-border-bottom-right-radius: 15px 15px;
-webkit-border-bottom-left-radius: 15px 15px;
background-image: url(buttonbar.jpg);
width: 800px;
height: 30px;
line-height: 30px;
font-size: 14px;
text-align: center
}
.button {
margin: 30px 16px auto 16px;
float: left;
width: 80px;
height: 100px;
}
.button:first-child {
margin-left: 64px;
}
.button img {
padding: 0 8px 0 8px;
display: block;
}
.button span {
display: block;
width: 80px;
text-align: center;
font-size: 14px;
}
.download {
float: left;
margin: 34px 8px 57px 40px;
background-image: url(downloadButton.png);
line-height: 56px;
width: 225px;
height: 56px;
}
.download img {
margin: 4px 20px 4px 16px;
float: left;
width: 48px;
}
.download span {
display: block;
font-size: 16px;
font-weight: bold;
}
.proxyVideo {
width: 800px;
height: 480px;
background-color: #888;
}
footer {
margin-top: 8px;
display: block;
color: #333;
font-style: italic;
font-size: 11px;
width: 100%;
text-align: center;
}
|