55 lines
906 B
CSS
55 lines
906 B
CSS
|
.floatingAd .ad{
|
||
|
z-index: 100;
|
||
|
background: none;
|
||
|
position: absolute;
|
||
|
display: none;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
.floatingAd a{
|
||
|
color:#aaaaaa;
|
||
|
display: inline-block;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
.floatingAd a img{
|
||
|
border:1px solid #eee;
|
||
|
}
|
||
|
.floatingAd .close{
|
||
|
display: none;
|
||
|
}
|
||
|
.floatingAd .opacity{
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
width: 100%;
|
||
|
height: 25px;
|
||
|
background-color: #000000;
|
||
|
opacity: 0.20;
|
||
|
filter: alpha(opacity = 20);
|
||
|
}
|
||
|
.opacity1{
|
||
|
opacity: 0.90;
|
||
|
filter: alpha(opacity = 90);
|
||
|
}
|
||
|
.floatingAd .text{
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
width: 100%;
|
||
|
height: 25px;
|
||
|
color: #aaaaaa;
|
||
|
line-height: 25px;
|
||
|
}
|
||
|
.floatingAd .text .button{
|
||
|
position: relative;
|
||
|
float: right;
|
||
|
top: 5px;
|
||
|
right: 5px;
|
||
|
width: 16px;
|
||
|
height: 16px;
|
||
|
background: url("../images/close.gif") no-repeat;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
.floatingAd .text .title{
|
||
|
position: relative;
|
||
|
float: left;
|
||
|
font-size: 12px;
|
||
|
margin-left: 5px;
|
||
|
}
|