-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathslideshow_main.css
55 lines (48 loc) · 952 Bytes
/
slideshow_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
#slideshow {
overflow: hidden;
height: 510px;
width: 100%;
margin: 0 auto;
}
.slide-wrapper {
width: calc(100% * 8);
height: 510px;
-webkit-animation: slide 20s ease infinite;
}
.slide {
float: left;
height: 510px;
display: inline-block;
background-size: cover;
}
.slide img {
width: inherit;
height: 100%;
}
@-webkit-keyframes slide {
16.6% {margin-left: 0px;}
33.2% {margin-left: -120%;}
49.8% {margin-left: -240%;}
66.4% {margin-left: -360%;}
85% {margin-left: -480%;}
100% {margin-left: -600%;}
}
.turbo-link {
margin-left: 8%;
margin-top: 10px;
margin-bottom: 10px;
padding-bottom: 10px;
height: 150px;
}
.turbo-link .content {
float: left;
width: 150px;
margin-right: 10px;
height: 150px;
padding: 20px 30px;
margin-left: 2%;
}
.turbo-link .content:hover {
background-color: #78c71f;
border-radius: 8px;
}