|
@@ -0,0 +1,50 @@
|
|
1
|
+body {
|
|
2
|
+ width:100%;
|
|
3
|
+ height:100%;
|
|
4
|
+ background-color: white;
|
|
5
|
+ color: #424242;
|
|
6
|
+ font-family:'YanoneKaffeesatzLight',Verdana,Tahoma,Arial;
|
|
7
|
+ margin:0;
|
|
8
|
+ padding:0;
|
|
9
|
+}
|
|
10
|
+#wrap{
|
|
11
|
+ display: block;
|
|
12
|
+ position: absolute;
|
|
13
|
+ width:766px;
|
|
14
|
+ height: 262px;
|
|
15
|
+ overflow:hidden;
|
|
16
|
+ text-align: center;
|
|
17
|
+ margin: auto;
|
|
18
|
+ top: 0; left: 0; bottom: 0; right: 0;
|
|
19
|
+}
|
|
20
|
+#left{
|
|
21
|
+ display:inline-block;
|
|
22
|
+ background-image:url(../images/chromelogo.png);
|
|
23
|
+ background-repeat:no-repeat;
|
|
24
|
+ width:246px;
|
|
25
|
+ height:262px;
|
|
26
|
+ float: left;
|
|
27
|
+}
|
|
28
|
+#middle{
|
|
29
|
+ display:inline-block;
|
|
30
|
+ background-image:url(../images/chromepointer.png);
|
|
31
|
+ background-repeat:no-repeat;
|
|
32
|
+ width:53px;
|
|
33
|
+ height:262px;
|
|
34
|
+ float: left;
|
|
35
|
+}
|
|
36
|
+#text{
|
|
37
|
+ display:inline-block;
|
|
38
|
+ font-size: 20pt;
|
|
39
|
+ width: 400px;
|
|
40
|
+ vertical-align:middle;
|
|
41
|
+ padding-top: 30px;
|
|
42
|
+}
|
|
43
|
+
|
|
44
|
+a {
|
|
45
|
+ color: #087dba;
|
|
46
|
+ text-decoration:none;
|
|
47
|
+}
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
|