-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.css
120 lines (102 loc) · 2.68 KB
/
main.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
body {
background: black;
color: white;
margin: 0;
overflow: hidden;
font-family: Helvetica Neue;
-webkit-font-smoothing: antialiased;
}
a {
color: white;
text-decoration: none;
}
#debug {
position: absolute;
top: 0;
left: 0;
margin: 5px;
background: black;
font-size: 10px;
color: white;
line-height: 10px;
z-index: 10;
padding: 5px;
}
#content {
-webkit-transform: translateZ(0);
-moz-transform: translateZ(0);
}
#content .container {
position: relative;
}
#content .container .album {
-webkit-transform: rotateY(0);
-moz-transform: rotateY(0);
position: absolute;
z-index: 10;
top: 0;
left: 0;
}
@-webkit-keyframes flipped {
0% { -webkit-transform: perspective(5000px) rotateY(180deg); }
50% { -webkit-transform: perspective(5000px) rotateY(90deg); }
100% {
-webkit-transform: perspective(5000px) rotateY(0deg);
-webkit-animation-timing-function: ease-out;
}
}
@-webkit-keyframes flipping {
0% { -webkit-transform: perspective(5000px) rotateY(0deg); }
50% { -webkit-transform: perspective(5000px) rotateY(-90deg); }
100% {
-webkit-transform: perspective(5000px) rotateY(-180deg);
-webkit-animation-timing-function: ease-out;
}
}
@-moz-keyframes flipped {
0% { -moz-transform: perspective(5000px) rotateY(180deg); }
50% { -moz-transform: perspective(5000px) rotateY(90deg); }
100% {
-moz-transform: perspective(5000px) rotateY(0deg);
-moz-animation-timing-function: ease-out;
}
}
@-moz-keyframes flipping {
0% { -moz-transform: perspective(5000px) rotateY(0deg); }
50% { -moz-transform: perspective(5000px) rotateY(-90deg); }
100% {
-moz-transform: perspective(5000px) rotateY(-180deg);
-moz-animation-timing-function: ease-out;
}
}
#content .container .album.flippedl,
#content .container .album.flippedr,
#content .container .album.flippingl,
#content .container .album.flippingr {
-webkit-animation: flipped 0.6s normal linear;
-webkit-animation-iteration-count: once;
-moz-animation-name: flipped;
-moz-animation-duration: 0.6s;
-moz-animation-iteration-count: once;
-moz-animation-direction: forward;
-moz-animation-timing-function: linear;
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
z-index: 20;
}
#content .container .album.flippedl {
}
#content .container .album.flippingl {
-webkit-animation-name: flipping;
-moz-animation-name: flipping;
}
#content .container .album.flippedr {
-webkit-animation-name: flipping;
-webkit-animation-direction: reverse;
-moz-animation-name: flipping;
-moz-animation-direction: reverse;
}
#content .container .album.flippingr {
-webkit-animation-direction: reverse;
-moz-animation-direction: reverse;
}