import theme from "../../theme"; export const style = { SECTION: { background: theme.foregroundColor, }, SECTION_INNER: { margin: "0 auto", mobile: { desktop: { padding: 50, }, smartphone: { padding: 10, }, }, }, HEADLINE: { fontSize: "32pt", fontFamily: theme.fontFamily, paddingBottom: 10, mobile: { desktop: { fontSize: "28pt", fontWeight: "bold" as "bold", }, smartphone: { fontSize: "22pt", }, }, }, TEXT: { fontFamily: theme.fontFamily, fontSize: "13pt", lineHeight: "18pt", padding: "20px 0", }, BUTTON: { style: { display: "inline-block", padding: "10px 75px", marginTop: 10, border: "none", backgroundColor: theme.backgroundColor, borderRadius: 3, cursor: "pointer", }, caption1: { color: theme.foregroundColor, fontWeight: "bold" as "bold", fontSize: "10pt", }, }, FORM_FIELD: { style: { width: "100%" }, inputStyle: { width: "100%", padding: 15, backgroundColor: "transparent", border: `1px solid ${theme.backgroundColor}`, borderRadius: 5, marginTop: 10, }, }, };