176 lines
3.2 KiB
CSS
176 lines
3.2 KiB
CSS
|
|
.modal-background {
|
|
align-items: center;
|
|
background-color: transparent;
|
|
display: flex;
|
|
height: 100vh;
|
|
justify-content: center;
|
|
left: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
width: 100vw;
|
|
}
|
|
|
|
.modal-body {
|
|
align-items: center;
|
|
display: flex;
|
|
height: 80%;
|
|
justify-content: center;
|
|
width: 100%;
|
|
}
|
|
|
|
.modal-button {
|
|
background-color: #85c742;
|
|
border: none;
|
|
border-radius: 5px;
|
|
color: #061726;
|
|
cursor: pointer;
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
text-decoration: none;
|
|
/* width: 20%; */
|
|
width: 70px;
|
|
}
|
|
|
|
.modal-button-cancel {
|
|
background-color: transparent;
|
|
border: 1px solid #495a6a;
|
|
border-radius: 5px;
|
|
color: #495a6a;
|
|
cursor: pointer;
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
text-decoration: none;
|
|
/* width: 20%; */
|
|
width: 70px;
|
|
}
|
|
|
|
.modal-button-delete {
|
|
background-color: transparent;
|
|
border: 1px solid red;
|
|
border-radius: 5px;
|
|
color: red;
|
|
cursor: pointer;
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
text-decoration: none;
|
|
/* width: 20%; */
|
|
width: 70px;
|
|
}
|
|
|
|
.modal-close {
|
|
align-items: center;
|
|
background-color: transparent;
|
|
border: none;
|
|
display: flex;
|
|
flex-direction: center;
|
|
padding: 0px;
|
|
}
|
|
|
|
.modal-close:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.modal-close-icon {
|
|
height: 24px;
|
|
padding: 0px;
|
|
width: 24px;
|
|
}
|
|
|
|
.modal-container {
|
|
align-items: center;
|
|
background-color: rgba(6,23,38,1);
|
|
border: 1px solid #495a6a;
|
|
border-radius: 15px;
|
|
color: black;
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 50%;
|
|
justify-content: space-between;
|
|
opacity: 1;
|
|
padding: 10px 20px;
|
|
width: 50%;
|
|
}
|
|
|
|
.modal-footer {
|
|
align-items: center;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
height: 10%;
|
|
width: 100%;
|
|
}
|
|
|
|
.modal-header {
|
|
align-items: center;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
height: 10%;
|
|
width: 100%;
|
|
}
|
|
|
|
.modal-title {
|
|
color: white;
|
|
font-family: sans-serif;
|
|
font-size: 24px;
|
|
}
|
|
|
|
.small-modal-button-delete {
|
|
background-color: red;
|
|
border: none;
|
|
border-radius: 5px;
|
|
color: white;
|
|
cursor: pointer;
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
text-decoration: none;
|
|
/* width: 20%; */
|
|
width: 70px;
|
|
}
|
|
|
|
.small-modal-container {
|
|
align-items: center;
|
|
/* background-color: rgba(6,23,38,1); */
|
|
background-color: white;
|
|
border: 1px solid #495a6a;
|
|
/* border: 1px solid black; */
|
|
border-radius: 15px;
|
|
color: black;
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 50%;
|
|
justify-content: space-between;
|
|
opacity: 1;
|
|
padding: 10px 20px;
|
|
width: 50%;
|
|
}
|
|
|
|
.small-modal-header {
|
|
align-items: center;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
height: 10%;
|
|
width: 100%;
|
|
}
|
|
|
|
.small-modal-footer {
|
|
align-items: center;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
height: 20%;
|
|
width: 100%;
|
|
}
|
|
|
|
.small-modal-message {
|
|
font-family: sans-serif;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.small-modal-title {
|
|
color: black;
|
|
font-family: sans-serif;
|
|
font-size: 24px;
|
|
} |