-
Notifications
You must be signed in to change notification settings - Fork 1
/
SingUpScreenStyle.js
127 lines (124 loc) · 2.27 KB
/
SingUpScreenStyle.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
var React = require('react-native');
var {
StyleSheet,
Dimensions,
} = React;
const { width, height } = Dimensions.get('window')
module.exports = StyleSheet.create({
imgPolicy:{
height:width/9,
width:width/9,
top: -width/13,
bottom: 0,
left: width - width/10,
right: 0,
shadowColor: "#000000",
shadowOpacity: 0.2,
shadowRadius: 1,
shadowOffset: {
height: 2,
width: 0
}
},
text : {
paddingTop: 10,
textAlign: 'center',
color : '#7002FF',
marginBottom : 50,
fontFamily : 'Roboto-Regular',
},
container: {
flex: 1,
justifyContent : 'flex-start',
alignItems : 'center',
padding:10,
paddingTop: 80,
},
buttomGetText: {
fontSize: width*0.04,
textAlign: 'center',
margin: width*0.037,
color: '#fff',
fontFamily : 'Roboto-Regular'
},
buttomGet: {
height : height / 14,
width: width*8/10,
marginLeft : width/60,
backgroundColor: '#00CC66',
borderRadius : 5,
shadowColor: "#000000",
shadowOpacity: 0.5,
shadowRadius: 2,
shadowOffset: {
height: 0,
width: 0
}
},
buttonSingUpWithFacebook: {
height : height/14,
width: width*8/10,
marginTop : 10,
marginLeft : width/60,
backgroundColor: '#3b5998',
borderRadius : 5,
shadowColor: "#000000",
shadowOpacity: 0.5,
shadowRadius: 2,
shadowOffset: {
height: 0,
width: 0
}
},
ViewForLogo:{
flex:1,
},
Account:{
flex :1,
height: height/30,
width: width*8/10,
backgroundColor : 'transparent',
padding: 4,
marginLeft : width/60,
},
navBarText: {
color: '#000000',
textAlign: 'center',
marginTop : 30,
fontFamily : 'Roboto-Regular',
},
navBar: {
height: 64,
width: width,
position: 'absolute',
top: 0,
bottom: 0,
left: 0,
right: 0,
},
imgBack:{
left: 0,
right: 0,
top: 20,
bottom:0 ,
position: 'absolute',
height:width/10,
width:width/9,
shadowColor: "#000000",
shadowOpacity: 0.2,
shadowRadius: 1,
shadowOffset: {
height: 2,
width: 0
}
},
BarForBack :{
left: 0,
right: 0,
top: 0,
bottom: 0,
position : 'absolute',
height : 70,
width : 70,
},
});