-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslideshow.css
148 lines (128 loc) · 3.03 KB
/
slideshow.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
146
147
148
@import url(https://fonts.googleapis.com/css?family=Abril+Fatface);
@import url(https://fonts.googleapis.com/css?family=Roboto:500);
html, body {
width: 100%;
height: 100%;
overflow: hidden;
}
body {
color: white;
font-family: 'Roboto', sans-serif;
font-size: 16px;
line-height: 1em;
background-color: black;
}
#slides {
position: absolute;
top: 17%;
left: 10%;
right: 48%;
bottom: 17%;
overflow: hidden;
}
#slides ul {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
}
#slides ul li {
position: relative;
width: 100%;
height: 100%;
opacity: 0.5;
background-repeat: no-repeat;
}
/* #slides ul li:nth-child(1) {
background-color: #131313;
}
#slides ul li:nth-child(2) {
background-color: #262626;
}
#slides ul li:nth-child(3) {
background-color: #393939;
}
#slides ul li:nth-child(4) {
background-color: #262626;
}
#slides ul li:nth-child(5) {
background-color: #131313;
} */
ul#steps {
position: absolute;
top: 50%;
left: 20%;
height: 110px;
margin-top: -55px;
}
ul#steps li {
position: relative;
height: 100%;
color: #999;
font-family: 'Abril Fatface', serif;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
-webkit-transition: color 666ms cubic-bezier(0.666, 0, 0.333, 1), font-size 666ms cubic-bezier(0.666, 0, 0.333, 1);
transition: color 666ms cubic-bezier(0.666, 0, 0.333, 1), font-size 666ms cubic-bezier(0.666, 0, 0.333, 1);
}
ul#steps li.active {
color: #bf482c;
font-size: 96px;
}
#titles {
position: absolute;
top: 50%;
left: 40%;
width: 60%;
height: 330px;
margin-top: -165px;
padding: 110px 0;
}
#titles ul {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
}
#titles li {
position: relative;
width: 100%;
height: 100%;
visibility: hidden;
opacity: 0;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
-webkit-transition: visibility 0ms linear 666ms, opacity 666ms cubic-bezier(0.666, 0, 0.333, 1);
transition: visibility 0ms linear 666ms, opacity 666ms cubic-bezier(0.666, 0, 0.333, 1);
}
#titles li.active {
visibility: visible;
opacity: 1;
-webkit-transition: visibility 0ms linear, opacity 666ms cubic-bezier(0.666, 0, 0.333, 1);
transition: visibility 0ms linear, opacity 666ms cubic-bezier(0.666, 0, 0.333, 1);
}
#titles li h2 {
font-family: 'Abril Fatface', serif;
font-size: 96px;
display: block;
}
#titles li h4 {
font-family: 'Abril Fatface', serif;
font-size: 56px;
display: block;
}
#titles li p {
height: 110px;
color: #999;
}
.roller {
-webkit-transform: translate3d(0, 0%, 0);
transform: translate3d(0, 0%, 0);
-webkit-transition: -webkit-transform 666ms cubic-bezier(0.666, 0, 0.333, 1);
transition: -webkit-transform 666ms cubic-bezier(0.666, 0, 0.333, 1);
transition: transform 666ms cubic-bezier(0.666, 0, 0.333, 1);
transition: transform 666ms cubic-bezier(0.666, 0, 0.333, 1), -webkit-transform 666ms cubic-bezier(0.666, 0, 0.333, 1);
}
/*# sourceMappingURL=style.css.map */