-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathStyles.js
70 lines (65 loc) · 1.08 KB
/
Styles.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
70
'use strict';
var React = require('react-native');
var {
StyleSheet,
Dimensions,
} = React;
var width = Dimensions.get('window').width;
module.exports = StyleSheet.create({
item: {
padding: 10,
},
sectionHeader: {
color: '#f89854',
fontWeight: '500',
backgroundColor: '#fde2ce',
fontSize: 16,
paddingTop: 2,
paddingLeft: 10,
paddingRight: 10,
paddingBottom: 2,
},
loginHeader:{
fontSize: 30,
color: 'white',
alignSelf: 'center',
fontFamily: 'Roboto',
marginTop: 40,
marginBottom: 100
},
errorText : {
fontSize: 15,
color: 'red',
alignSelf: 'center',
fontFamily: 'Roboto',
marginTop: 5,
},
loginContainer:{
flex:1,
backgroundColor: '#f9a56a',
alignItems: 'center',
paddingTop: 40,
paddingLeft: 15,
paddingRight: 15,
justifyContent: 'center',
},
loginInput:{
padding:5,
fontSize:15,
height: 55,
backgroundColor: 'rgba(255,255,255, .7)',
margin: 5,
width: width*.8,
fontFamily: 'Roboto',
},
loginButton:{
backgroundColor:'gray',
padding: 5,
margin:10,
},
loginText:{
color:'white',
fontSize: 18,
fontFamily: 'Roboto',
}
});