upskill-event-manager/hvac-community-events/assets/css/hvac-event-summary.css

71 lines
No EOL
1.7 KiB
CSS

/**
* Styles for the HVAC Community Events Single Event Summary Template
*/
.hvac-event-summary-details,
.hvac-event-summary-transactions {
margin-bottom: 2em; /* Add spacing between sections */
padding: 1.5em;
border: 1px solid #e2e2e2; /* Basic border like theme cards */
border-radius: 4px; /* Slight rounding */
background-color: #fff; /* White background */
}
.hvac-event-summary-details h2,
.hvac-event-summary-transactions h2 {
margin-top: 0;
margin-bottom: 1em;
font-size: 1.5em; /* Adjust as needed */
border-bottom: 1px solid #eee;
padding-bottom: 0.5em;
}
.hvac-event-summary-details h3 {
margin-top: 1.5em;
margin-bottom: 0.5em;
font-size: 1.2em;
}
.hvac-event-summary-details p,
.hvac-event-summary-transactions p {
margin-bottom: 0.8em;
}
.hvac-event-summary-details .event-description {
margin-top: 1em;
padding-top: 1em;
border-top: 1px dashed #eee;
}
/* Basic Table Styling - Inherit Astra's base styles where possible */
.hvac-transactions-table {
width: 100%;
border-collapse: collapse;
margin-top: 1em;
}
.hvac-transactions-table th,
.hvac-transactions-table td {
text-align: left;
padding: 0.8em 1em;
border-bottom: 1px solid #eee;
}
.hvac-transactions-table th {
background-color: #f8f8f8; /* Light background for header */
font-weight: bold;
}
.hvac-transactions-table tbody tr:nth-child(odd) {
background-color: #fdfdfd; /* Subtle striping */
}
.hvac-transactions-table tbody tr:hover {
background-color: #f1f1f1; /* Hover effect */
}
/* Ensure edit button has some margin */
.entry-header .button.astra-button {
margin-left: 1em;
vertical-align: middle; /* Align with title */
}