mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2024-12-15 06:09:58 +08:00
101 lines
2.0 KiB
CSS
101 lines
2.0 KiB
CSS
/*
|
|
* @Author: prpr
|
|
* @Date: 2016-02-03 17:11:53
|
|
* @Last Modified by: prpr
|
|
* @Last Modified time: 2016-02-03 17:18:56
|
|
*/
|
|
.pure-form > *, .pure-button {
|
|
width: 100%;
|
|
margin: 10px 0 !important;
|
|
}
|
|
.container {
|
|
margin: 0 auto;
|
|
position: relative !important;
|
|
}
|
|
@media screen and (min-width: 48em) {
|
|
.container {
|
|
width: 85%;
|
|
}
|
|
}
|
|
body {
|
|
color: #444;
|
|
}
|
|
@media screen and (max-width: 550px) {
|
|
.pure-g:first-child {
|
|
margin-top: 100px !important;
|
|
}
|
|
}
|
|
.pure-g:first-child {
|
|
margin-top: 75px;
|
|
}
|
|
.panel-default {
|
|
border-color: #ddd!important;
|
|
}
|
|
.panel-danger {
|
|
border-color: #ebccd1!important;
|
|
}
|
|
.panel {
|
|
background-color: #fff;
|
|
border: 1px solid transparent;
|
|
border-radius: 4px;
|
|
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
|
|
box-shadow: 0 1px 1px rgba(0,0,0,.05);
|
|
width: 90%;
|
|
margin: 0 auto 20px;
|
|
}
|
|
.panel-danger>.panel-heading {
|
|
color: #a94442;
|
|
background-color: #f2dede;
|
|
border-color: #ebccd1;
|
|
}
|
|
.panel-default>.panel-heading {
|
|
color: #333;
|
|
background-color: #f5f5f5;
|
|
border-color: #ddd;
|
|
}
|
|
.panel-heading {
|
|
padding: 10px 15px;
|
|
border-bottom: 1px solid transparent;
|
|
border-top-left-radius: 3px;
|
|
border-top-right-radius: 3px;
|
|
}
|
|
.panel-body {
|
|
padding: 10px 15px 15px;
|
|
}
|
|
|
|
.home-menu-blur {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: -100;
|
|
}
|
|
.home-menu-wrp {
|
|
height: 100%;
|
|
background-color: rgba(255,255,255,0.4);
|
|
}
|
|
.home-menu-bg {
|
|
background-image: url("../images/bg_stone.png");
|
|
background-repeat: repeat;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: -1;
|
|
filter: blur(2px);
|
|
-webkit-filter: blur(2px);
|
|
-moz-filter: blur(2px);
|
|
-o-filter: blur(2px);
|
|
-ms-filter: blur(2px);
|
|
box-shadow: rgba(0,0,0,0.1) 0 1px 2px;
|
|
}
|
|
|
|
body {
|
|
background-image:
|
|
url("../images/bg_stone.png");
|
|
background-repeat: repeat;
|
|
}
|
|
.pure-button-error {
|
|
background: rgb(202, 60, 60);
|
|
color: #fff;
|
|
}
|