91 lines
1.4 KiB
CSS
91 lines
1.4 KiB
CSS
header {
|
|
display: none !important;
|
|
}
|
|
|
|
.wrapper {
|
|
padding: 0 !important;
|
|
}
|
|
|
|
.consent-signing-container {
|
|
padding: 15px;
|
|
}
|
|
|
|
.signatureModal .modal-dialog {
|
|
max-width: 90%;
|
|
}
|
|
|
|
.signature-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
width: 100%;
|
|
}
|
|
|
|
.signature-header {
|
|
text-align: center;
|
|
margin-bottom: 20px;
|
|
width: 100%;
|
|
}
|
|
|
|
.signature-options {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.signature-area {
|
|
width: 100%;
|
|
margin-bottom: 20px;
|
|
border: 1px solid #ccc;
|
|
border-radius: 5px;
|
|
overflow: hidden;
|
|
background-color: #f9f9f9;
|
|
}
|
|
|
|
.signature-area.landscape {
|
|
height: 300px;
|
|
}
|
|
|
|
.signature-area.portrait {
|
|
height: 500px;
|
|
}
|
|
|
|
.signature-actions {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 10px;
|
|
width: 100%;
|
|
}
|
|
|
|
.notes-area {
|
|
width: 100%;
|
|
}
|
|
|
|
/* Touch-friendly styling for tablets */
|
|
@media (max-width: 1024px) {
|
|
.btn, .form-control, select {
|
|
height: 46px;
|
|
padding: 10px 15px;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.btn-sm {
|
|
height: 38px;
|
|
padding: 8px 12px;
|
|
}
|
|
|
|
.table th, .table td {
|
|
padding: 12px 8px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
input[type=range] {
|
|
height: 30px;
|
|
}
|
|
|
|
input[type=color] {
|
|
height: 30px;
|
|
width: 50px;
|
|
}
|
|
} |