This repository has been archived by the owner on Nov 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.css
105 lines (95 loc) · 2.35 KB
/
plugin.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
95
96
97
98
99
100
101
102
103
104
105
/*
Coin Slider jQuery plugin CSS styles
http://workshop.rs/projects/coin-slider
*/
.coin-slider {
overflow: hidden;
zoom: 1;
position: relative;
}
.coin-slider a{
text-decoration: none;
outline: none;
border: none;
}
.cs-buttons {
font-size: 0px;
padding: 10px;
float: left;
}
/* square buttons */
/*
.cs-buttons a {
margin-left: 5px;
height: 10px;
width: 10px;
float: left;
border: 1px solid #B8C4CF;
color: transparent;
}
.cs-active {
background-color: #B8C4CF;
color: #FFFFFF;
} */
/* round buttons */
.cs-buttons a {
border: 1px solid #ccc;
color: transparent;
float: left;
height: 10px;
margin-left: 5px;
width: 10px;
background: linear-gradient(top, #CCCCCC, #F3F3F3) transparent;
background: -o-linear-gradient(top, #CCCCCC, #F3F3F3) transparent;
background: -moz-linear-gradient(top, #CCCCCC, #F3F3F3) transparent;
background: -webkit-linear-gradient(top, #CCCCCC, #F3F3F3) transparent;
background: -ms-linear-gradient(top, #CCCCCC, #F3F3F3) transparent;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
}
.cs-active {
background: linear-gradient(top, #888, #555) transparent !important;
background: -o-linear-gradient(top, #888, #555) transparent !important;
background: -moz-linear-gradient(top, #888, #555) transparent !important;
background: -webkit-linear-gradient(top, #888, #555) transparent !important;
background: -ms-linear-gradient(top, #888, #555) transparent !important;
border: 1px solid #555 !important;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
box-shadow: 0px 0px 3px #555;
}
.cs-title {
width: 100%;
padding: 10px 0;
background-color: #000000;
text-indent:10px;
color: #FFFFFF;
}
.cs-prev, .cs-next {
background-color: #000000;
color: #FFFFFF;
width:40px;
height:40px;
padding: 3px 6px;
font-size: 11pt;
}
/* prev and next buttons */
.prev, .next {
width: 0;
height: 0;
opacity:0.4;
margin:9px auto;
vertical-align:middle;
}
.prev {
border-right: 15px solid white;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
}
.next {
border-left: 15px solid white;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
}