forked from sidradchandran/SV-Carousel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
46 lines (44 loc) · 738 Bytes
/
style.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
html, body{
background-image: linear-gradient(to bottom, #000, #222);
height:100vh;
padding: 0px;
margin: 0px;
width: 100vw;
overflow: hidden;
}
.slider-container{
position: absolute;
top:0px;
left:0px;
width:100vw;
height:100vh;
overflow: hidden;
}
.slide{
position: absolute;
top: 0px;
width: 0%;
overflow: hidden;
height: 100%;
transition: all 1.2s ease;
}
.slide:nth-child(even){
left:100%;
}
.slide:nth-child(odd){
left:0%;
}
.slide .slide-image{
position: relative;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
}
.slide-active{
top:0px;
left:0% !important;
width: 100%;
height: 100%;
position: absolute;
}