56 lines
848 B
CSS
56 lines
848 B
CSS
.page ul {
|
|
padding: 0;
|
|
min-width: 450px;
|
|
}
|
|
|
|
.page ul::after {
|
|
content: '';
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
|
|
.page ul li {
|
|
float: left;
|
|
width: auto;
|
|
min-width: 32px;
|
|
line-height: 30px;
|
|
list-style: none;
|
|
margin: 0 5px;
|
|
border: 1px solid #ccc;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.page a {
|
|
color: #666666;
|
|
font-family: "微软雅黑";
|
|
padding: 5px 15px;
|
|
text-decoration: none;
|
|
display: block;
|
|
text-align: center;
|
|
border-left: none;
|
|
}
|
|
|
|
.page ul li a:hover {
|
|
background-color: #28a658;
|
|
}
|
|
|
|
.page ul li a:hover {
|
|
color: white;
|
|
}
|
|
|
|
.page .disabled a:hover {
|
|
background-color: white;
|
|
cursor: not-allowed;
|
|
color: #aaa;
|
|
}
|
|
|
|
.page .active a {
|
|
background-color: #28a658;
|
|
color: white;
|
|
|
|
}
|
|
.active{
|
|
border:0 !important;
|
|
border-radius: 5px;
|
|
overflow: hidden;
|
|
} |