75 lines
1.2 KiB
CSS
75 lines
1.2 KiB
CSS
|
#mask {
|
|||
|
position: absolute;
|
|||
|
left: 0;
|
|||
|
top: 0;
|
|||
|
right: 0;
|
|||
|
bottom: 0;
|
|||
|
z-index: 1000;
|
|||
|
background: #000;
|
|||
|
opacity: 0;
|
|||
|
transition: all 0.2s linear;
|
|||
|
display: none;
|
|||
|
}
|
|||
|
|
|||
|
#mask.final {
|
|||
|
opacity: 0.6;
|
|||
|
transition: all 0.2s linear;
|
|||
|
}
|
|||
|
|
|||
|
.float-dialog {
|
|||
|
display: none;
|
|||
|
left: 50%;
|
|||
|
top: 50%;
|
|||
|
position: fixed;
|
|||
|
z-index: 1001;
|
|||
|
box-shadow: 5px 5px 20px rgba(100, 100, 100, 0.5);
|
|||
|
border-radius: 10px;
|
|||
|
background-color: #f6f6f6;
|
|||
|
}
|
|||
|
|
|||
|
.float-dialog header {
|
|||
|
line-height: 52px;
|
|||
|
font-size: 16px;
|
|||
|
border-bottom: 1px solid #c6c6c6;
|
|||
|
color: #333333;
|
|||
|
text-indent: 30px;
|
|||
|
font-weight: bold;
|
|||
|
position: relative;
|
|||
|
}
|
|||
|
|
|||
|
.float-dialog header .fa {
|
|||
|
color: #999;
|
|||
|
position: absolute;
|
|||
|
right: 20px;
|
|||
|
top: 50%;
|
|||
|
margin-top: -5px;
|
|||
|
cursor: pointer;
|
|||
|
}
|
|||
|
|
|||
|
.float-dialog header .fa:hover {
|
|||
|
color: #444;
|
|||
|
}
|
|||
|
|
|||
|
.float-dialog section {
|
|||
|
padding: 20px 30px 15px 30px;
|
|||
|
}
|
|||
|
|
|||
|
.float-dialog footer {
|
|||
|
padding: 0 30px 20px 30px;
|
|||
|
text-align: center;
|
|||
|
}
|
|||
|
|
|||
|
.float-dialog footer button,
|
|||
|
.float-dialog footer a {
|
|||
|
margin-right: 10px;
|
|||
|
width: 150px;
|
|||
|
}
|
|||
|
|
|||
|
.float-dialog footer button:last-child,
|
|||
|
.float-dialog footer a:last-child {
|
|||
|
margin-right: 0;
|
|||
|
}
|
|||
|
|
|||
|
.cancel-button {
|
|||
|
}
|