-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyles2.js
63 lines (51 loc) · 1.07 KB
/
styles2.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
import { StyleSheet } from "react-native";
export const styles2 =StyleSheet.create({
container: {
flex:1,
justifyContent:'center',
// backgroundColor: '#aaaaaa',
paddingBottom:20,
},
img:{
width:50,
height:100,
},
signupContainer:{
paddingLeft:40,
paddingRight:40,
alignItems: 'center',
},
input :{
borderColor:'#0000dd',
backgroundColor:'rgba(240,208,193,0.5)' ,
height:40,
width:300,
marginBottom:30,
marginTop:10,
color:'#000000',
borderRadius:20,
fontWeight:'bold'
},
welcome: {
fontSize: 25,
textAlign: 'center',
marginBottom:20,
fontStyle:'italic'
},
instructions: {
textAlign: 'center',
color: '#333333',
marginBottom: 5,
},
para:{
fontSize: 25,
paddingLeft:30,
fontWeight:'bold',
justifyContent:'flex-start'
},
para2:{
fontSize: 15,
paddingLeft:20,
fontWeight:'bold',
}
});