| export const page: object = { | |
| minHeight: '100vh', | |
| color: 'white', | |
| padding: '1rem', | |
| fontFamily: | |
| 'Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif', | |
| }; | |
| export const h1: object = { | |
| fontSize: '4rem', | |
| fontWeight: '600', | |
| textAlign: 'center', | |
| marginBottom: '1rem', | |
| }; | |
| export const h2: object = { | |
| color: '#ec5990', | |
| marginBottom: '2rem', | |
| fontSize: '1.5rem', | |
| textAlign: 'center', | |
| }; | |
| export const items: object = { | |
| display: 'grid', | |
| gap: '1rem', | |
| gridTemplateColumns: '1fr 1fr 1fr', | |
| }; | |
| export const item: object = { | |
| border: '1px solid #516391', | |
| padding: '1rem', | |
| background: '#0f111d', | |
| }; | |
| export const title: object = { | |
| fontSize: '1.5rem', | |
| fontWeight: '600', | |
| marginBottom: '.5rem', | |
| display: 'inline-block', | |
| borderBottom: '1px solid #ec5990', | |
| }; | |
| export const description: object = { | |
| fontSize: '1rem', | |
| fontWeight: '300', | |
| marginBottom: '.5rem', | |
| }; | |
| export const slug: object = { | |
| fontSize: '.875rem', | |
| color: '#ec5990', | |
| display: 'block', | |
| marginBottom: '.25rem', | |
| textDecoration: 'none', | |
| }; | |