-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.ts
62 lines (61 loc) · 1.25 KB
/
styles.ts
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
const styles = {
input : {
width: '50%',
height: '30px',
padding: '12px 20px 10px 10px',
margin: '8px 0 10px 10px',
display: 'inline - block',
border: '1px solid #ccc',
borderRadius: '4px',
boxSizing: 'border-box',
},
genderContainer: {
display: 'table',
width: '100%'
},
genderText: {
display: 'table-cell',
width: '32%',
verticalAlign: 'middle',
textAlign: 'right'
},
radioContainer: {
display: 'table-cell',
width: '68%',
textAlign: 'left',
paddingLeft: '10px'
},
textAreaContainer: {
display: 'table-cell',
width: '68%',
textAlign: 'left',
},
textAreaStyles: {
width: '74%',
height: '30px',
padding: '12px 20px 10px 10px',
margin: '8px 0 10px 10px',
display: 'inline - block',
border: '1px solid #ccc',
borderRadius: '4px',
boxSizing: 'border-box',
},
button: {
backgroundColor: '#4CAF50',
border: 'none',
color: 'white',
padding: '10px',
textAlign: 'center',
textDecoration: 'none',
display: 'inline-block',
fontSize: '16px',
margin: '4px 2px',
cursor: 'pointer',
borderRadius: '8px'
},
main: {
fontFamily: 'sans-serif',
textAlign: 'center',
}
}
export default styles;