mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2024-12-15 06:09:58 +08:00
89 lines
1.8 KiB
CSS
89 lines
1.8 KiB
CSS
/*
|
|
* @Author: prpr
|
|
* @Date: 2016-02-04 16:47:54
|
|
* @Last Modified by: printempw
|
|
* @Last Modified time: 2016-03-06 15:33:44
|
|
*/
|
|
@media screen and (min-width: 48em) {
|
|
.container {
|
|
width: 90%;
|
|
}
|
|
}
|
|
.overview {
|
|
margin: 80px auto 0;
|
|
width: 100%;
|
|
}
|
|
.pure-table {
|
|
margin: 80px auto 0;
|
|
width: 100%;
|
|
background-color: #fff;
|
|
}
|
|
.pure-button {
|
|
width: inherit;
|
|
margin: 0 10px 0 0 !important;
|
|
}
|
|
.pure-button-error {
|
|
background: rgb(202, 60, 60);
|
|
color: #fff;
|
|
}
|
|
input {
|
|
width: 100%;
|
|
margin: 10px 0 20px;
|
|
}
|
|
input[type=checkbox] {
|
|
width: initial;
|
|
margin: 0;
|
|
margin: 0 5px 0 5px;
|
|
}
|
|
label {
|
|
display: block;
|
|
margin: 6px 0;
|
|
}
|
|
.fw {
|
|
width: 100%;
|
|
}
|
|
.pagination {
|
|
display: inline-block;
|
|
padding-left: 0;
|
|
margin: 20px 0;
|
|
border-radius: 4px;
|
|
}
|
|
.pagination > li {
|
|
display: inline;
|
|
}
|
|
.pagination > li:first-child > a, .pagination > li:first-child > span {
|
|
margin-left: 0;
|
|
border-top-left-radius: 4px;
|
|
border-bottom-left-radius: 4px;
|
|
}
|
|
.pagination > li > a, .pagination > li > span {
|
|
position: relative;
|
|
float: left;
|
|
padding: 6px 12px;
|
|
margin-left: -1px;
|
|
line-height: 1.42857143;
|
|
color: #337ab7;
|
|
text-decoration: none;
|
|
background-color: #fff;
|
|
border: 1px solid #ddd;
|
|
}
|
|
.pagination > li > a:focus, .pagination > li > a:hover {
|
|
z-index: 3;
|
|
color: #fff;
|
|
background-color: #337ab7;
|
|
border-color: #337ab7;
|
|
}
|
|
.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover {
|
|
z-index: 3;
|
|
color: #fff;
|
|
cursor: default;
|
|
background-color: #337ab7;
|
|
border-color: #337ab7;
|
|
}
|
|
.pagination > .disabled > a, .pagination > .disabled > a:focus, .pagination > .disabled > a:hover {
|
|
color: #777;
|
|
cursor: not-allowed;
|
|
background-color: #fff;
|
|
border-color: #ddd;
|
|
}
|