76 lines
914 B
CSS
76 lines
914 B
CSS
|
@CHARSET "UTF-8";
|
||
|
/* cover-list */
|
||
|
.cover-list {
|
||
|
position: relative;
|
||
|
float: left;
|
||
|
|
||
|
margin: 1px;
|
||
|
|
||
|
cursor: pointer;
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
.closed{
|
||
|
|
||
|
background:url(../google/foodBg2.png);
|
||
|
|
||
|
}
|
||
|
|
||
|
.imgLogo{
|
||
|
|
||
|
border-radius: 5px 5px 5px 5px;
|
||
|
|
||
|
border: 0;
|
||
|
}
|
||
|
.closed img{
|
||
|
|
||
|
opacity:0.4;
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
/* detail-frame */
|
||
|
.detail-frame {
|
||
|
display: none;
|
||
|
|
||
|
}
|
||
|
|
||
|
.arrow-left {
|
||
|
position: absolute;
|
||
|
width: 6px;
|
||
|
height: 9px;
|
||
|
top: 10px;
|
||
|
left: 0;
|
||
|
margin-left: -6px;
|
||
|
background: url(../google/arrow_gray.png) no-repeat;
|
||
|
}
|
||
|
|
||
|
.arrow-right {
|
||
|
position: absolute;
|
||
|
width: 6px;
|
||
|
height: 9px;
|
||
|
top: 10px;
|
||
|
left: 320px;
|
||
|
background: url(../google/arrow_gray.png) no-repeat -6px 0;;
|
||
|
}
|
||
|
|
||
|
.detail-tip {
|
||
|
position: absolute;
|
||
|
width: 300px;
|
||
|
background: #ffffe0;
|
||
|
border: 1px solid #ddd;
|
||
|
padding: 10px;
|
||
|
text-align: left;
|
||
|
}
|
||
|
|
||
|
.detail-tip h2 {
|
||
|
font-size: 12px;
|
||
|
line-height: 18px;
|
||
|
color: #3366cc;
|
||
|
}
|
||
|
|
||
|
.detail-tip p {
|
||
|
margin: 10px 0 0 0;
|
||
|
font-size: 14px;
|
||
|
}
|