Webengineering-Filemanager/Frontend/static/css/modal.css
H4CK3R-01 51d51c3a32 - Improved alerts
- Improved modal
- Fixed get_curr_path() function
- Improved tools.js
- Cleaned up
- Refactoring
2021-06-04 14:05:05 +02:00

59 lines
1003 B
CSS

#modal {
position: fixed;
z-index: 100000;
padding-top: 100px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.8);
}
#content {
background-color: #fefefe;
margin: auto;
padding: 20px;
border: 1px solid #888;
width: 90%;
border-radius: 5px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.divider {
background: #585858;
height: 0.1em;
margin: 0.5em 0 0.5em;
}
#modal_header {
display: grid;
grid-template-columns: 90% 10%;
}
#modal_header #modal_title {
grid-column: 1;
margin: 0;
}
#modal_header > span {
grid-column: 2;
display: flex;
justify-content: flex-end;
align-items: center;
}
#modal_header span i {
cursor: pointer;
}
#modal_content {
display: flex;
justify-content: center;
align-items: center;
background-color: #fefefe;
width: 100%;
height: calc(100% - 16px - 2em);
}