-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
160 lines (142 loc) · 3.18 KB
/
style.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/**
* Really Simple™ Slideshow -- CSS
*/
.hlink{
text-decoration:none;
color:#00F;
}
.rs-slideshow {
/*border: 12px solid #444;
border-radius: 12px;
-webkit-border-radius: 12px;
-moz-border-radius: 12px;
-khtml-border-radius: 12px;*/
height: 240px;
margin: 4px auto;
overflow: hidden;
position: relative;
width: 970px;
z-index:1;
}
.rs-slideshow .slide-container {
background-color: #444;
position: absolute;
height: 100%;
left: 0;
overflow: hidden;
top: 0;
width: 100%;
}
.rs-slideshow .slide-container img {
position: relative;
}
.rs-slideshow .slide-container .slide-caption {
background-color: #000;
bottom: 0;
color: #fff;
display: block;
left: 0;
padding: 6px 12px;
position: absolute;
text-align: center;
right: 0;
filter: alpha(opacity=70); /* internet explorer */
-khtml-opacity: 0.7; /* khtml, old safari */
-moz-opacity: 0.7; /* mozilla, netscape */
opacity: 0.7; /* fx, safari, opera */
}
.rs-slideshow .slides {
display: none;
}
.rs-slideshow .slide-container img,
.rs-slideshow .slide-container .slide-caption,
.rs-slideshow .slide-container a {
filter: inherit;
}
/**
* These styles make the list of links to slide images visible to users
* who don't have JavaScript enabled. By adding the 'no-js' class to
* the HTML element, and using Modernizr to remove this class for JS
* users, we can style for both scenarios.
* http://www.modernizr.com/
*/
.no-js .rs-slideshow {
height: auto;
}
.no-js .rs-slideshow .slide-container,
.no-js .rs-slideshow .slide-container img {
position: relative;
}
.no-js .rs-slideshow .slides {
display: block;
margin: 24px 48px;
}
.no-js .rs-slideshow .slides li {
margin: 0;
}
/**
* The following styles are used in the demos with slideshow controls,
* such as play/pause and prev/next buttons.
*/
.rs-controls {
clear: both;
margin: 12px auto;
width: 620px;
}
.rs-play-pause, .rs-prev, .rs-next {
float: left;
margin-right: 12px;
}
.rs-controls ul {
float: left;
list-style: none;
margin: 0 6px 0 0;
padding: 0;
}
.rs-index-list li {
float: left;
margin-right: 6px;
}
/*.rs-controls a {
background-color: #eee;
border: 1px solid #ddd;
/*border-radius: 3px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-khtml-border-radius: 3px;
color: #444;
display: block;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: bold;
padding: 3px 5px;
text-decoration: none;
}
.rs-controls a:hover {
background-color: #ddd;
color: #444;
}*/
.rs-controls .rs-active {
background-color: #444;
border: 1px solid #444;
color: #eee;
}
#callback-messages,
#slide-class-message {
margin: 48px auto;
width: 620px;
}
.slide-container.some-custom-class .slide-caption {
background-color: #890;
font-size: 3em;
font-style: italic;
font-weight: bold;
text-align: right;
top: 0;
width: 28%;
}
/* Clearfix */
.clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.clearfix { display: inline-block; }
* html .clearfix { height: 1%; } /* Hides from IE-mac \*/
.clearfix { display: block; }