Files
ultimatemember/assets/css/um-modal.css
T
ultimatemember 125c622521 first sync
2014-12-15 22:38:07 +02:00

55 lines
935 B
CSS

/*
- Overlay
*/
.um-modal-overlay {
background: rgba(0,0,0, 0.80);
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 100000;
}
/*
- modal
*/
.um-modal * {-webkit-font-smoothing: antialiased !important;-moz-osx-font-smoothing: grayscale;}
.um-modal {
border-radius: 3px;
background: #fff;
position: fixed;
top: 50% !important;
left: 50% !important;
display: none;
z-index: 100010;
box-sizing: border-box;
}
.um-modal.normal {width: 500px;margin-left: -250px;}
.um-modal.large {width: 730px;margin-left: -365px;}
.um-modal.small {width: 400px;margin-left: -200px;}
.um-modal-body {
min-height: 100px;
padding: 0 20px;
box-sizing: border-box;
width: 100%;
}
.um-modal div.um {
margin-bottom: 20px !important;
}
.um-modal-header {
border-radius: 3px 3px 0 0;
height: 44px;
line-height: 44px;
color: #fff;
background: #aaa;
padding: 0 20px;
box-sizing: border-box;
font-size: 16px;
}