import styled from 'styled-components' export const EventTypeHeading = styled.h2` color: #787878; font-size: 28px; margin-bottom: 28px; font-weight: 100; &::first-letter { text-transform: uppercase; } ` export const QuickSummaryTable = styled.table` width: 100%; max-width: 600px; margin-bottom: 32px; ` export const SummaryTableBody = styled.tbody` display: flex; justify-content: space-between; ` export const Attribute = styled.tr<{ icon: string }>` padding-left: 32px; display: flex; flex-direction: column; row-gap: 4px; position: relative; width: 130px; &::before { position: absolute; top: 0; bottom: 0; left: 0; margin: auto; content: ''; display: block; height: 18px; width: 18px; background: center / 100% no-repeat url(${({ icon }) => icon}); } &::after { content: ''; display: block; height: 90%; border-right: 1px solid #cfcfcf; position: absolute; left: 24px; top: 0; bottom: 0; margin: auto; } ` export const AttributeName = styled.th` font-size: 10px; text-transform: uppercase; text-align: left; color: #4a4a4a; font-weight: 400; ` export const AttributeValue = styled.td` font-size: 14px; `