You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
112 lines
1.8 KiB
Plaintext
112 lines
1.8 KiB
Plaintext
/*
|
|
navlist垂直导航列表样式
|
|
*/
|
|
.navlist
|
|
{
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 10px;
|
|
}
|
|
.navlist li
|
|
{
|
|
padding: 0;
|
|
}
|
|
.navlist li a
|
|
{
|
|
line-height: 24px;
|
|
color: #0066CC;
|
|
text-decoration: none;
|
|
display:block;
|
|
width:100%;
|
|
}
|
|
.navlist li div
|
|
{
|
|
border-bottom: 1px dashed #99bbe8;
|
|
margin: 1px 0;
|
|
}
|
|
.navlist li div:hover
|
|
{
|
|
background: none repeat scroll 0 0 #e0ecff;
|
|
border-bottom: 1px dashed #99bbe8;
|
|
border-left: 1px dashed #99bbe8;
|
|
border-right: 1px dashed #99bbe8;
|
|
cursor: pointer;
|
|
}
|
|
.navlist li div:hover a
|
|
{
|
|
color: #416aa3;
|
|
display:block;
|
|
width:100%;
|
|
}
|
|
.navlist li div.selected
|
|
{
|
|
background: none repeat scroll 0 0 #e0ecff;
|
|
border: 1px solid #99bbe8;
|
|
cursor: default;
|
|
}
|
|
.navlist li div.selected a
|
|
{
|
|
color: #416aa3;
|
|
font-weight: bold;
|
|
}
|
|
|
|
/*
|
|
hornavlist水平导航列表样式
|
|
*/
|
|
|
|
.hornavlist
|
|
{
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 5px;
|
|
}
|
|
.hornavlist li
|
|
{
|
|
padding: 0;
|
|
float:left;
|
|
margin:0 5px;
|
|
text-align:center;
|
|
width:80px;
|
|
}
|
|
.hornavlist li a
|
|
{
|
|
line-height: 24px;
|
|
color: #0066CC;
|
|
text-decoration: none;
|
|
display:block;
|
|
width:100%;
|
|
text-align:center;
|
|
}
|
|
.hornavlist li div
|
|
{
|
|
border-bottom: 1px dashed #99bbe8;
|
|
margin: 0;
|
|
padding:0 10px;
|
|
text-align:center;
|
|
}
|
|
.hornavlist li div:hover
|
|
{
|
|
border-bottom: 2px solid #99bbe8;
|
|
cursor: pointer;
|
|
font-weight: bold;
|
|
text-align:center;
|
|
}
|
|
.hornavlist li div:hover a
|
|
{
|
|
color: #416aa3;
|
|
display:block;
|
|
width:100%;
|
|
}
|
|
.hornavlist li div.selected
|
|
{
|
|
border-bottom: 2px solid #99bbe8;
|
|
cursor: default;
|
|
font-weight:bold;
|
|
text-align:center;
|
|
}
|
|
.hornavlist li div.selected a
|
|
{
|
|
color: #416aa3;
|
|
font-weight: bold;
|
|
text-align:center;
|
|
} |