-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcarousel.css
More file actions
executable file
·109 lines (101 loc) · 2.21 KB
/
carousel.css
File metadata and controls
executable file
·109 lines (101 loc) · 2.21 KB
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
.carouselContainer
{
display: inline-block;
position: relative;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
/*.carouselContainer figcaption
{
background: rgba(0, 0, 0, 0.3);
color: #fff;
display: block;
padding-bottom: 5px;
padding-top: 5px;
position: absolute;
left: 0;
width: 100%;
}*/
.carouselContainer figcaption
{
background: rgba(0, 0, 0, 0.7);
color: #fff;
display: block;
padding-bottom: 5px;
padding-top: 5px;
}
.carouselContainer span
{
position: absolute;
bottom: 20px;
left: 50px;
width: 260px;
text-align: left;
padding: 10px;
background: rgba(0, 0, 0, 0.5);
color: #fff;
font-size: 11px;
}
.indicatorsContainer
{
margin: auto;
padding: 0;
text-align: center;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
.indicatorsContainer li
{
display: inline-block;
width: 12px;
height: 12px;
margin: 0 6px;
border: 1px solid #888;
border-radius: 100%;
background: -webkit-linear-gradient(#cccccc, #ececec);
background: -moz-linear-gradient(#cccccc, #ececec);
background: -ms-linear-gradient(#cccccc, #ececec);
background: linear-gradient(#cccccc, #ececec);
box-shadow: inset 0 0 2px #888;
cursor: pointer;
}
.indicatorsContainer li.active
{
border-color: #204a87;
background: #8abdf4;
background: -webkit-linear-gradient(#8abdf4, #3e8ee3);
background: -moz-linear-gradient(#8abdf4, #3e8ee3);
background: -ms-linear-gradient(#8abdf4, #3e8ee3);
background: linear-gradient(#8abdf4, #3e8ee3);
box-shadow: inset 0 0 2px #3e8ee3;
}
.arrowPrevious
{
background-image: url(assets/carouselArrowPrev.png);
width: 60px;
height: 60px;
position: absolute;
top: 45%;
left: -16px;
z-index: 1000;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
.arrowNext
{
background-image: url(assets/carouselArrowNext.png);
width: 60px;
height: 60px;
position: absolute;
top: 45%;
right: -15px;
z-index: 1000;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}