-
Notifications
You must be signed in to change notification settings - Fork 0
/
slider.css
67 lines (62 loc) · 1.1 KB
/
slider.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
@charset "utf-8";
/* CSS Document */
/* comman properties*/
* {
box-sizing: border-box;
}
.fullSize {
width: 100%;
height: 100%;
}
.autoSizing {
width: auto;
height: auto;
}
.overflowHidden {
overflow: hidden;
}
.absolutePos {
position: absolute;
}
.relativePos {
position: relative;
}
.fixedPos {
position: fixed;
}
.position {
position: absolute;
left: 0%;
}
.slide_1 {
background: url("images/15686649040_4d1709d7ba_b.jpg");
background-size: cover;
}
.slide_2 {
background: url("images/DvdM_overzichtbeeld-op-home.jpg");
background-size: cover;
}
.slide_3 {
background: url("images/img_6313.jpg");
background-size: cover;
}
.slide_4 {
background: url("images/pompadour-green-pigeon.jpg");
background-size: cover;
}
.slide_5 {
background: url("images/Wild-Life.jpg");
background-size: cover;
}
.slide_1, .slide_2, .slide_3, .slide_4, .slide_5 {
top: 100%;
max-height: 100%;
max-width: 100%;
transform: translate3d(0px, 0px, 0px);
transition-duration: 1.15s;
}
.sildeWrap {
top: 0%;
left: 0%;
height: auto;
}