forked from alvarotrigo/fullPage.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjquery.fullPage.css
60 lines (59 loc) · 1.08 KB
/
jquery.fullPage.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
body, html {
margin:0;
padding:0;
}
#superContainer {
height:100%;
position:relative;
}
.section{
position: relative;
}
.slide {
float: left;
}
.slide, .slidesContainer {
height: 100%;
display: block;
}
.slides {
overflow: hidden;
position: relative;
-webkit-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
}
.section.table{
display:table;
width:100%;
}
.tableCell{
display:table-cell;
vertical-align: middle;
width:100%;
}
.slidesContainer {
float: left;
position: relative;
}
.controlArrow{
position:absolute;
top:50%;
cursor:pointer;
width: 0px;
height: 0px;
border-style: solid;
margin-top: -38px;
}
.controlArrow.prev{
left:15px;
width: 0px;
border-width: 38.5px 34px 38.5px 0;
border-color: transparent #fff transparent transparent;
}
.controlArrow.next{
right:15px;
border-width: 38.5px 0 38.5px 34px;
border-color: transparent transparent transparent #fff;
}