-
Notifications
You must be signed in to change notification settings - Fork 0
/
jquery-stickypage.css
60 lines (58 loc) · 1.52 KB
/
jquery-stickypage.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
.sticky-page {
position: relative;
padding: 0px;
margin: 0px;
}
.sticky-page li {
position: absolute;
width: 200px;
height: 150px;
padding: 10px;
margin: 5px;
rotation-point:50% 50%;
box-shadow: 0 0 5px gray;
list-style: none;
background: #fefcea; /* Old browsers */
background: -moz-linear-gradient(top, #fefcea 0%, #f1da36 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fefcea), color-stop(100%,#f1da36)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #fefcea 0%,#f1da36 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #fefcea 0%,#f1da36 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #fefcea 0%,#f1da36 100%); /* IE10+ */
background: linear-gradient(to bottom, #fefcea 0%,#f1da36 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fefcea', endColorstr='#f1da36',GradientType=0 ); /* IE6-9 */
}
.sticky-page li time {
float: right;
opacity: 0.7;
position: absolute;
bottom: 10px;
right: 10px;
}
/*
.sticky-page li {
-moz-transition:-moz-transform .15s linear;
-o-transition:-o-transform .15s linear;
-webkit-transition:-webkit-transform .15s linear;
}
*/
.sticky-page li:hover {
z-index:5;
}
.sticky-page-scroller {
display: block;
width: 100%;
overflow-y: hidden;
overflow-x: scroll;
box-sizing: border-box;
box-shadow: none;
background: transparent;
}
.sticky-page-scroller-content {
height: 1px;
width: 10000px;
background-color: none;
}
.sticky-page-scroller {
position: absolute;
bottom: 0px;
}