70 lines
1.2 KiB
CSS
70 lines
1.2 KiB
CSS
.layui-layer{
|
|
background: #252527;
|
|
-moz-box-shadow: 0px 1px 10px #030c03;
|
|
box-shadow: 0px 1px 10px #030c03;
|
|
color: #fff;
|
|
}
|
|
|
|
.layui-layer-title{
|
|
background: #252527;
|
|
border-color: #2d2d2d;
|
|
color: #fff;
|
|
}
|
|
|
|
.layui-layer .box{
|
|
padding: 20px;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.layui-layer .table_box{
|
|
padding: 0;
|
|
padding-top: 10px;
|
|
}
|
|
|
|
.layui-layer .table_box table{
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
table-layout: fixed;
|
|
}
|
|
.layui-layer .table_box table tr{
|
|
border-bottom: 1px solid #333;
|
|
text-align: center;
|
|
}
|
|
.layui-layer .table_box table td{
|
|
padding: 10px 0;
|
|
}
|
|
|
|
.layui-layer-btn a{
|
|
background-color: #1a1a1b;
|
|
border: 1px solid #252527;
|
|
color: #ccc;
|
|
}
|
|
|
|
|
|
.layui-layer-setwin .layui-layer-ico{
|
|
background: #23a77b;
|
|
border-radius: 10px;
|
|
-webkit-animation-timing-function:ease-in-out;
|
|
-webkit-animation-name:breathe;
|
|
-webkit-animation-duration:2700ms;
|
|
-webkit-animation-iteration-count:infinite;
|
|
-webkit-animation-direction:alternate;
|
|
}
|
|
|
|
.layer-ext-skin{
|
|
font-weight: 500;
|
|
}
|
|
|
|
|
|
@-webkit-keyframes breathe {
|
|
0% {
|
|
opacity:.5;
|
|
-moz-box-shadow: 0px 1px 10px #030c03;
|
|
box-shadow: 0px 1px 10px #030c03;
|
|
}
|
|
100% {
|
|
opacity:1;
|
|
box-shadow:0 1px 20px rgba(59,255,255,1);
|
|
-moz-box-shadow:0 1px 20px rgba(59,255,255,1);
|
|
} |