mirror of
https://github.com/moparisthebest/mailiverse
synced 2024-11-15 05:35:07 -05:00
49 lines
941 B
CSS
49 lines
941 B
CSS
/**********************************************************/
|
|
|
|
.modal-container {
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
top: 0;
|
|
left: 0;
|
|
position: fixed;
|
|
z-index: 1;
|
|
background-color: rgba(0,0,0,0.2);
|
|
}
|
|
|
|
.bootstrap-modal {
|
|
position: fixed;
|
|
top: 50%;
|
|
left: 50%;
|
|
z-index: 1050;
|
|
width: 560px;
|
|
margin: -250px 0 0 -280px;
|
|
overflow: auto;
|
|
background-color: #ffffff;
|
|
border: 1px solid #999;
|
|
border: 1px solid rgba(0, 0, 0, 0.3);
|
|
-webkit-border-radius: 6px;
|
|
-moz-border-radius: 6px;
|
|
border-radius: 6px;
|
|
-webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
|
-moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
|
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
|
-webkit-background-clip: padding-box;
|
|
-moz-background-clip: padding-box;
|
|
background-clip: padding-box;
|
|
}
|
|
|
|
.modal {
|
|
padding:10px;
|
|
}
|
|
|
|
.modal-footer {
|
|
margin-top: 15px;
|
|
text-align: right;
|
|
}
|
|
.modal-footer .btn {
|
|
margin-left: 5px;
|
|
}
|
|
|
|
/*******************************************************/
|