Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 | 55x 55x 55x 55x 55x 55x 55x 55x 55x 55x 55x 55x | import styled from "@emotion/styled";
export const AddressSpan = styled.span`
color: #1a1a1a;
`;
export const ParagraphGeneric = styled.p`
font-size: 14px;
margin: 0;
padding: 10px 0 10px 0;
word-break: break-word;
`;
export const ParagraphPage = styled.p`
font-size: 14px;
margin: 0;
padding: 10px 0 10px 0;
color: #666665;
font-weight: 400;
line-height: 20px;
text-align: justify;
word-break: break-word;
`;
export const Title = styled.h2`
text-align: center;
font-weight: 500;
font-size: 26px;
`;
export const Heading = styled.h3`
font-weight: 500;
font-size: 20px;
padding: 20px 0 0 0;
margin: 0;
`;
export const SubHeading = styled.h4`
font-weight: 500;
font-size: 16px;
padding: 20px 0 0 0;
margin: 0;
`;
export const UList = styled.ul`
margin: 0px 20px 0px 20px;
padding: 0px;
padding-left: 20px;
`;
export const OList = styled.ol`
margin: 0px 20px 0px 20px;
padding: 0px;
padding-left: 20px;
`;
export const ListElement = styled.li`
font-size: 14px;
margin: 0;
padding: 5px;
text-align: justify;
color: #666665;
`;
export const SubTitle = styled.p`
color: black;
font-weight: 500;
margin: 2px;
font-size: 14px;
`;
// Fee-schedule tables (Merchant Agreement v3.5, Exhibit D). Wide tables scroll
// inside their own container instead of widening the agreement column.
export const TableScroll = styled.div`
overflow-x: auto;
padding: 10px 0;
`;
export const FeeTable = styled.table`
border-collapse: collapse;
width: 100%;
font-size: 14px;
th,
td {
border: 1px solid #d5d5d3;
padding: 6px 10px;
text-align: left;
vertical-align: top;
color: #666665;
}
th {
font-weight: 500;
color: #1a1a1a;
background-color: #f7f7f6;
}
`;
|