You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
630 B
41 lines
630 B
/* Styles */
|
|
|
|
.email-block {
|
|
display: grid;
|
|
grid-template-columns: 1fr 8fr;
|
|
row-gap: 5px;
|
|
border: 1px solid gray;
|
|
padding: 4px;
|
|
}
|
|
|
|
.email-block-info {
|
|
font-style: italic;
|
|
font-size: 80%;
|
|
align-self: center;
|
|
}
|
|
|
|
.email-block-info-value {
|
|
font-weight: bold;
|
|
font-size: 90%;
|
|
align-self: center;
|
|
}
|
|
|
|
.email-block-body {
|
|
grid-column-start: 1;
|
|
grid-column-end: span 2;
|
|
border-left: 1px gray solid;
|
|
padding-left: 5px;
|
|
}
|
|
|
|
.email-block-body-line {
|
|
|
|
}
|
|
|
|
.email-block-mailto {
|
|
grid-column-start: 1;
|
|
grid-column-end: span 2;
|
|
}
|
|
|
|
.email-block-error {
|
|
color: red !important;
|
|
} |