100 lines
1.6 KiB
CSS
100 lines
1.6 KiB
CSS
.aftersales-electronic-form {
|
|
color: #111827;
|
|
}
|
|
|
|
.electronic-form-header {
|
|
display: grid;
|
|
grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
|
|
align-items: center;
|
|
gap: 20px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.electronic-form-brand {
|
|
justify-self: start;
|
|
}
|
|
|
|
.electronic-form-logo {
|
|
height: 34px;
|
|
object-fit: contain;
|
|
}
|
|
|
|
.electronic-form-title {
|
|
justify-self: center;
|
|
text-align: center;
|
|
font-size: 20px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.electronic-form-meta {
|
|
justify-self: end;
|
|
}
|
|
|
|
.electronic-form-qr {
|
|
width: 82px;
|
|
height: 82px;
|
|
object-fit: contain;
|
|
}
|
|
|
|
.electronic-form-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
table-layout: fixed;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.electronic-form-table th,
|
|
.electronic-form-table td {
|
|
border: 1px solid #1f2937;
|
|
padding: 9px 10px;
|
|
vertical-align: top;
|
|
word-break: break-word;
|
|
}
|
|
|
|
.electronic-form-table th {
|
|
width: 120px;
|
|
background: #f3f4f6;
|
|
text-align: left;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.electronic-form-code {
|
|
color: #165dff;
|
|
font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
|
|
font-size: 16px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.electronic-form-text {
|
|
min-height: 72px;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
@media (max-width: 720px) {
|
|
.electronic-form-header {
|
|
align-items: flex-start;
|
|
grid-template-columns: 1fr;
|
|
gap: 10px;
|
|
}
|
|
|
|
.electronic-form-brand,
|
|
.electronic-form-title,
|
|
.electronic-form-meta {
|
|
justify-self: start;
|
|
}
|
|
|
|
.electronic-form-title {
|
|
text-align: left;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.electronic-form-table {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.electronic-form-table th,
|
|
.electronic-form-table td {
|
|
padding: 8px;
|
|
}
|
|
}
|