-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
104 lines (91 loc) · 2.01 KB
/
style.css
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
99
100
101
102
103
104
div.appstorebadge { margin-top: 20px; }
div.appstorebadge {
position: relative;
width: 150px;
height: 50px;
background: #000;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
div.text {
position: absolute;
width: 106px;
height: 49px;
top: 0px;
left: 37px;
font-family: Helvetica, sans-serif;
color: #fff;
}
div.text div.line1 {
position: absolute;
top: 7px;
width: 112px;
height: 49px;
font-size: 12px;
letter-spacing: 0.12em;
}
div.text div.line2 {
position: absolute;
width: 120px;
top: 18px;
height: 49px;
font-size: 22.5px;
letter-spacing: 0.04em;
}
div.iphone {
position: absolute;
left: 11px;
width: 18px;
top: 8px;
height: 34px;
background: #fff;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
div.iphone div.button {
position: absolute;
left: 7.5px;
width: 3.5px;
top: 29.5px;
height: 3.5px;
background: #000;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
}
div.iphone div.screen {
position: absolute;
left: 1px;
width: 16px;
top: 6px;
height: 22px;
background: #000;
}
div.iphone div.earpiece {
position: absolute;
left: 7.5px;
top: 3px;
width: 3px;
height: 0.5px;
background: #000;
}
div.grey, div.grey div.iphone div.screen, div.grey div.iphone div.earpiece, div.grey div.iphone div.button {
background-color: #7f7f7f; }
div.white div.iphone { background-color: #000; }
div.white, div.white div.iphone div.screen, div.white div.iphone div.earpiece, div.white div.iphone div.button {
background-color: #fff; }
div.white { border: 2px solid #000; }
div.white div.text { color: #000; }
/* bug: firefox zooms, but div height doesn't increase. */
div.zoom2 {
zoom: 200%;
-moz-transform: scale(2);
-moz-transform-origin: 0 0;
}
div.zoom3 {
zoom: 300%;
-moz-transform: scale(3);
-moz-transform-origin: 0 0;
}