forked from codesandbox/codesandbox-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_job.elements.js
More file actions
37 lines (33 loc) · 772 Bytes
/
_job.elements.js
File metadata and controls
37 lines (33 loc) · 772 Bytes
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
import { Button } from '@codesandbox/common/lib/components/Button';
import styled, { css } from 'styled-components';
export const Title = styled.h1`
${({ theme }) => css`
font-weight: 600;
font-size: 36px;
margin-bottom: 2em;
margin-top: 1em;
padding-bottom: 0;
color: ${theme.lightText};
`};
`;
export const ContentBlock = styled.div`
${({ theme }) => css`
h2 {
font-weight: 600;
font-size: 24px;
margin-top: 36px;
color: ${theme.lightText};
}
font-weight: 400;
font-size: 18px;
line-height: 1.5;
color: ${theme.lightText};
margin-bottom: 36px;
`};
`;
export const ApplyButton = styled(Button)`
display: inline-block;
font-size: 14px;
line-height: 1;
margin-bottom: 50px;
`;