68 lines
1.2 KiB
CSS
68 lines
1.2 KiB
CSS
|
@CHARSET "UTF-8";
|
||
|
|
||
|
#slideshow {
|
||
|
margin:0 auto;
|
||
|
width:640px;
|
||
|
height:263px;
|
||
|
background:transparent url(/images/blue/slideshow/bg_slideshow.jpg) no-repeat 0 0;
|
||
|
position:relative;
|
||
|
}
|
||
|
#slideshow #slidesContainer {
|
||
|
margin:0 auto;
|
||
|
width:560px;
|
||
|
height:263px;
|
||
|
overflow:auto; /* allow scrollbar */
|
||
|
position:relative;
|
||
|
}
|
||
|
#slideshow #slidesContainer .slide {
|
||
|
margin:0 auto;
|
||
|
width:540px; /* reduce by 20 pixels of #slidesContainer to avoid horizontal scroll */
|
||
|
height:263px;
|
||
|
}
|
||
|
#slideshow #slidesContainer h3{
|
||
|
font: bold;
|
||
|
font-size: 16px;
|
||
|
color: #aaccdd;
|
||
|
}
|
||
|
/**
|
||
|
* Slideshow controls style rules.
|
||
|
*/
|
||
|
.control {
|
||
|
display:block;
|
||
|
width:39px;
|
||
|
height:263px;
|
||
|
text-indent:-10000px;
|
||
|
position:absolute;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
#leftControl {
|
||
|
top:0;
|
||
|
left:0;
|
||
|
background:transparent url(/images/blue/slideshow/control_left.jpg) no-repeat 0 0;
|
||
|
}
|
||
|
#rightControl {
|
||
|
top:0;
|
||
|
right:0;
|
||
|
background:transparent url(/images/blue/slideshow/control_right.jpg) no-repeat 0 0;
|
||
|
}
|
||
|
|
||
|
#pageContainer {
|
||
|
margin:0;
|
||
|
padding:0;
|
||
|
font:normal 11px Verdana, Geneva, sans-serif;
|
||
|
color:#ccc;
|
||
|
}
|
||
|
a img {border:2px solid #ccc;}
|
||
|
|
||
|
#pageContainer {
|
||
|
margin:0 auto;
|
||
|
width:960px;
|
||
|
}
|
||
|
.slide p {
|
||
|
margin:15px;
|
||
|
}
|
||
|
|
||
|
.slide img {
|
||
|
float:left;
|
||
|
margin:0 15px 4px;
|
||
|
}
|