import theme from "../../theme"; export const style = { SECTION: { background: theme.foregroundColor, }, SECTION_INNER: { margin: "0 auto", // padding: 50 }, HEADLINE: { fontSize: "32pt", fontFamily: theme.fontFamily, fontWeight: "bold" as "bold", paddingBottom: 10, color: theme.foregroundColor, }, TEXT: { fontFamily: theme.fontFamily, fontSize: "13pt", lineHeight: "18pt", padding: "20px 0", color: theme.foregroundColor, }, FORM_FIELD: { style: { padding: "10px 0", maxWidth: "100%", }, inputStyle: { width: "100%", padding: 15, paddingLeft: 50, border: "1px solid #DDD", borderRadius: 4, fontSize: "13pt", }, labelStyle: { fontFamily: "Roboto", fontSize: "10pt", textAlign: "left", padding: 5, }, iconStyle: { padding: 15, color: theme.backgroundColor, }, }, BUTTON: { style: { display: "inline-block", padding: 20, marginTop: 10, border: "none", backgroundColor: theme.backgroundColor, width: "100%", borderRadius: 3, cursor: "pointer", }, caption1: { color: theme.foregroundColor, fontWeight: "bold" as "bold", fontSize: "13pt", }, }, };