36 lines
615 B
CSS
36 lines
615 B
CSS
|
#banner_nav {
|
||
|
position: absolute;
|
||
|
z-index: 10;
|
||
|
bottom: 0;
|
||
|
margin-right: 5px;
|
||
|
right: 0;
|
||
|
}
|
||
|
#banner_nav>li {
|
||
|
float: left;
|
||
|
display: inline-block;
|
||
|
*display: inline;
|
||
|
|
||
|
}
|
||
|
#banner_nav>li>a {
|
||
|
display:block;
|
||
|
width: 10px;
|
||
|
height: 10px;
|
||
|
border-radius: 5px;
|
||
|
-webkit-border-radius: 5px;
|
||
|
-moz-border-radius: 5px;
|
||
|
background-color: #FFFFFF;
|
||
|
opacity: .5;
|
||
|
filter: alpha(opacity = 50);
|
||
|
margin: 0 4px 10px;
|
||
|
text-indent: -9999px;
|
||
|
box-shadow: 0 0 5px rgba(0,0,0,.7);
|
||
|
}
|
||
|
#banner_nav>li>a:hover {
|
||
|
opacity: 1;
|
||
|
filter: alpha(opacity = 100);
|
||
|
}
|
||
|
#banner_nav>li.activeSlide>a {
|
||
|
opacity: 1;
|
||
|
filter: alpha(opacity = 100);
|
||
|
}
|