-
-
Notifications
You must be signed in to change notification settings - Fork 895
/
Copy pathSharedStyles.js
69 lines (59 loc) · 1.06 KB
/
SharedStyles.js
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
63
64
65
66
67
68
69
const styleBigAvatar = {
width: '80px',
height: '80px',
margin: '0px auto 15px',
};
const styleRaisedButton = {
margin: '15px 15px 30px 15px',
font: '15px Muli',
};
const styleToolbar = {
background: '#FFF',
height: '64px',
paddingRight: '20px',
};
const styleLoginButton = {
borderRadius: '2px',
textTransform: 'none',
font: '16px Muli',
fontWeight: '400',
letterSpacing: '0.01em',
color: 'white',
backgroundColor: '#DF4930',
};
const styleTextField = {
font: '15px Muli',
color: '#222',
fontWeight: '300',
};
const styleForm = {
margin: '7% auto',
width: '360px',
};
const styleGrid = {
margin: '0px auto',
font: '16px Muli',
color: '#222',
fontWeight: '300',
lineHeight: '1.5em',
};
const styleH1 = {
textAlign: 'center',
fontWeight: '400',
lineHeight: '45px',
};
const styleHomepageFeature = {
textAlign: 'center',
padding: '10px 45px',
};
module.exports = {
styleBigAvatar,
styleRaisedButton,
styleToolbar,
styleLoginButton,
styleTextField,
styleForm,
styleGrid,
styleH1,
styleHomepageFeature,
};