-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscene5-ipad.css
executable file
·89 lines (74 loc) · 2.2 KB
/
scene5-ipad.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
#crouching {
width: 1045px;
height: 123px;
bottom: 0;
left: 0;
background-image: url('http://arnold.lemonde-interactif.fr/~rasoahaingo/pub/sony-mobile-ipad-slider/img/crouchingLady.jpg');
background-size: 1045px 123px;
}
#flying {
width: 940px;
height: 340px;
left: 95%;
bottom: 0;
background-image: url('http://arnold.lemonde-interactif.fr/~rasoahaingo/pub/sony-mobile-ipad-slider/img/flyingLady.png');
background-size: 940px 340px;
}
#logo {
top: 17px;
left: 17px;
width: 160px;
height: 28px;
background-image: url('http://arnold.lemonde-interactif.fr/~rasoahaingo/pub/sony-mobile-ipad-slider/img/logo.png');
background-size: 160px 28px;
}
#cta {
width: 576px;
max-width: 576px;
height: 150px;
top: 0px;
right: -576px;
overflow: hidden;
opacity: 0;
}
#cta.show {
opacity: 1;
right: 0;
}
#cta-copy {
width: 576px;
height: 150px;
background-image: url('http://arnold.lemonde-interactif.fr/~rasoahaingo/pub/sony-mobile-ipad-slider/img/cta_fade.png');
background-size: 576px 150px;
top: 0;
left: 0;
}
#arrow {
width: 23px;
height: 36px;
background-image: url('http://arnold.lemonde-interactif.fr/~rasoahaingo/pub/sony-mobile-ipad-slider/img/arrow.png');
background-size: 23px 36px;
right: 50px;
top: 55px;
-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: 192dppi) {
#crouching { background-image: url('http://arnold.lemonde-interactif.fr/~rasoahaingo/pub/sony-mobile-ipad-slider/img/crouchingLady@2x.jpg'); }
#flying { background-image: url('http://arnold.lemonde-interactif.fr/~rasoahaingo/pub/sony-mobile-ipad-slider/img/flyingLady@2x.png'); }
#logo { background-image: url('http://arnold.lemonde-interactif.fr/~rasoahaingo/pub/sony-mobile-ipad-slider/img/logo@2x.png'); }
#cta-copy { background-image: url('http://arnold.lemonde-interactif.fr/~rasoahaingo/pub/sony-mobile-ipad-slider/img/cta_fade@2x.png'); }
#arrow { background-image: url('http://arnold.lemonde-interactif.fr/~rasoahaingo/pub/sony-mobile-ipad-slider/img/arrow@2x.png'); }
}