54 lines
987 B
CSS
54 lines
987 B
CSS
mat-dialog-content {
|
|
font-size: 16px;
|
|
margin-bottom: 20px;
|
|
color: #555;
|
|
}
|
|
|
|
.action-container {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 1em;
|
|
padding: 0.5em 1.5em 1.5em 1.5em;
|
|
}
|
|
|
|
.action-button {
|
|
background-color: #2196f3;
|
|
color: white;
|
|
padding: 8px 18px;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
font-size: 16px;
|
|
transition: transform 0.3s ease;
|
|
font-family: Roboto, "Helvetica Neue", sans-serif;
|
|
}
|
|
|
|
.action-button:hover:not(:disabled) {
|
|
background-color: #3f51b5;
|
|
}
|
|
|
|
.action-button:disabled {
|
|
background-color: #ced0df;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.ordinary-button {
|
|
background-color: #f5f5f5;
|
|
color: #333;
|
|
padding: 8px 18px;
|
|
border: 1px solid #ddd;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
font-size: 16px;
|
|
transition: transform 0.3s ease;
|
|
font-family: Roboto, "Helvetica Neue", sans-serif;
|
|
}
|
|
|
|
.ordinary-button:hover:not(:disabled) {
|
|
background-color: #e0e0e0;
|
|
}
|
|
|
|
mat-checkbox {
|
|
margin-top: 15px;
|
|
display: block;
|
|
} |