msa advanced events memorial - ajtruckle/meeting-schedule-assistant-support GitHub Wiki
Memorial
Stylesheet Classes
These classes have been provided for you to customize how the information is displayed. These can be found towards the end of the stylesheet:
.tableMemorial {
margin-bottom: 2mm;
}
.textMemorialHeading {
padding: 1mm;
color: #fff;
background-color: #FD00FF;
width: 90mm;
font-size: 12pt;
font-weight: 700;
text-transform: uppercase;
vertical-align: middle;
}
.textMemorialDate {
padding-left: 1mm;
float: left;
text-transform: uppercase;
font-size: 11pt;
font-weight: 700;
}
.bulletMI {
padding-right: 1mm;
color: #FD00FF;
font-weight: normal;
}
.memorial-container {
text-align: center;
}
.memorial-location {
}
.memorial-textbefore {
}
.memorial-textafter {
}
.memorial-image {
}
.cellMemorial {
padding-left: 1mm;
}
The tableMemorial class needs to be added to the print section of the CSS file too:
@media print {
body {
background: #FFF;
}
.containerPage, .containerMeeting,
.tableDATE, .tableHEADING, .tableTFGW,
.tableAYFM, .tableLAC, .tableWeekend, .tableMemorial {
width: 99%;
min-width: 99%;
max-width: 99%;
padding-left: 0;
padding-right: 0;
margin-left: auto;
margin-right: auto;
}
}