-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathjquery.swipology.css
94 lines (82 loc) · 1.69 KB
/
jquery.swipology.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
.swipology {
position: relative;
background: #777;
overflow: hidden;
}
.swipology img {
max-width: 100%;
display: none;
margin:auto;
border: 0;
padding: 0;
}
.swipology a:first-child > img {
display:block;
}
.swipology .swipology_content {
overflow:auto;
-webkit-transform: translate3d(0,0,0);
}
.swipology .swipology_content div {
float:left;
border-radius: 10px;
}
.swipology .swipology_content div img {
display:block;
zoom: 16;
height:auto;
max-height: 100%;
width: auto;
max-width:100%;
visibility: hidden;
}
.swipology .swipology_dots {
left: 0;
position: absolute;
width: 100%;
text-align: center;
bottom: 3%;
z-index:10;
}
.swipology .swipology_dots a {
display: inline-block;
vertical-align: top;
padding: 4px 4px;
}
.swipology .swipology_dots a span {
display: block;
width: 8px;
height: 8px;
background: #aaa;
background: rgba(255,255,255,.3);
box-shadow: 0 0 3px rgba(0,0,0,.3);
border-radius: 50%;
}
.swipology .swipology_dots a.swipology_active span {
background: white;
background: rgba(255,255,255,.7);
}
.swipology .swipology_arrow {
position: absolute;
top: 50%;
margin-top: -31px;
height: 60px;
width: 30px;
background: #666;
background: rgba(0,0,0,.1);
display: block;
cursor: pointer;
border:1px solid transparent;
z-index:1;
}
.swipology .swipology_arrow:hover {
background: #444;
background: rgba(0,0,0,.2);
border:1px solid rgba(255,255,255,.3);
}
.swipology .swipology_arrow.swipology_arrow_left {
left: 0;
}
.swipology .swipology_arrow.swipology_arrow_right {
right: 0;
}