-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscene4.css
executable file
·145 lines (120 loc) · 3.61 KB
/
scene4.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
/*
scene 4
*/
#bg {
top: 0;
right: 0;
height: 100%;
width: 960px;
background-image: url('http://arnold.lemonde-interactif.fr/~rasoahaingo/pub/land-rover-iphone-slider/img/bg.jpg');
background-size: 960px 75px;
}
#car {
height: 59px;
width: 159px;
background-image: url('http://arnold.lemonde-interactif.fr/~rasoahaingo/pub/land-rover-iphone-slider/img/car.png');
background-size: 100%;
bottom: 0;
left: -159px;
z-index: 5;
}
#car .wheel {
height: 22px;
width: 23px;
bottom: 4px;
background-size: 23px 22px;
}
#rwheel {
background-image: url('http://arnold.lemonde-interactif.fr/~rasoahaingo/pub/land-rover-iphone-slider/img/rwheel.png');
left: 20px;
}
#fwheel {
background-image: url('http://arnold.lemonde-interactif.fr/~rasoahaingo/pub/land-rover-iphone-slider/img/fwheel.png');
left: 114px;
}
#logo {
top: 0;
left: 20px;
width: 69px;
height: 61px;
background-image: url('http://arnold.lemonde-interactif.fr/~rasoahaingo/pub/land-rover-iphone-slider/img/logo.jpg');
background-size: 100%;
}
#main-copy {
width: 154px;
height: 27px;
background-image: url('http://arnold.lemonde-interactif.fr/~rasoahaingo/pub/land-rover-iphone-slider/img/mainCopy.png');
background-size: 100%;
top: 33px;
left: 95px;
opacity: 1;
}
button#main-button {
outline: 0;
border: 1px solid #898989;
width: 0;
max-width: 157px;
height: 36px;
top: 21px;
left: 144px;
border-radius: 3px;
background-color: #fff;
box-shadow: 0px -1px 7px #919191;
-webkit-animation: shadowPulse 4s linear infinite;
overflow: hidden;
}
@-webkit-keyframes shadowPulse {
0% {
box-shadow: 0px -1px 7px #919191;
}
80% {
box-shadow: 0px -1px 7px #919191;
}
90% {
box-shadow: 0px -1px 10px #fff;
}
100% {
box-shadow: 0px -1px 7px #919191;
}
}
#btn-copy {
width: 105px;
height: 20px;
background-image: url('http://arnold.lemonde-interactif.fr/~rasoahaingo/pub/land-rover-iphone-slider/img/btnCopy.jpg');
background-size: 105px 20px;
top: 7px;
left: 15px;
border-right: 1px solid #d6d6d6;
}
#arrow {
width: 7px;
height: 10px;
background-image: url('http://arnold.lemonde-interactif.fr/~rasoahaingo/pub/land-rover-iphone-slider/img/arrow.jpg');
background-size: 7px 10px;
left: 133px;
top: 12px;
-webkit-animation: opacityPulse 2s linear infinite;
}
@-webkit-keyframes opacityPulse {
0% {
opacity: 0.1;
}
50% {
opacity: 1;
}
100% {
opacity: 0.1;
}
}
@media
(-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
#bg { background-image: url('http://arnold.lemonde-interactif.fr/~rasoahaingo/pub/land-rover-iphone-slider/img/[email protected]'); }
#car { background-image: url('http://arnold.lemonde-interactif.fr/~rasoahaingo/pub/land-rover-iphone-slider/img/[email protected]'); }
#rwheel { background-image: url('http://arnold.lemonde-interactif.fr/~rasoahaingo/pub/land-rover-iphone-slider/img/[email protected]'); }
#fwheel { background-image: url('http://arnold.lemonde-interactif.fr/~rasoahaingo/pub/land-rover-iphone-slider/img/[email protected]'); }
#logo { background-image: url('http://arnold.lemonde-interactif.fr/~rasoahaingo/pub/land-rover-iphone-slider/img/[email protected]'); }
#main-copy { background-image: url('http://arnold.lemonde-interactif.fr/~rasoahaingo/pub/land-rover-iphone-slider/img/[email protected]'); }
#btn-copy { background-image: url('http://arnold.lemonde-interactif.fr/~rasoahaingo/pub/land-rover-iphone-slider/img/[email protected]'); }
#arrow { background-image: url('http://arnold.lemonde-interactif.fr/~rasoahaingo/pub/land-rover-iphone-slider/img/[email protected]'); }
}