-
Notifications
You must be signed in to change notification settings - Fork 0
/
Styles.ts
118 lines (116 loc) · 2.24 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
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
import { StyleSheet } from "react-native";
const Styles = StyleSheet.create({
login_container: {
flex: 1,
backgroundColor: "#FFF",
},
login_header: {
alignItems: "center",
paddingTop: 30,
paddingBottom: 50,
backgroundColor: "#208AEC",
},
login_header_logo: {
width: 220,
resizeMode: "contain",
},
login_header_text: {
marginTop: 15,
color: "#f0f0f0",
fontSize: 16,
},
login_header_text_bold: {
color: "#fff",
fontWeight: "bold",
},
login_wrapper: {
flex: 1,
justifyContent: "space-between",
paddingVertical: 40,
borderTopRightRadius: 12,
borderTopLeftRadius: 12,
marginTop: -10,
backgroundColor: "#fff",
alignItems: "center",
},
form: {
width: "100%",
maxWidth: 280,
},
form_input: {
height: 44,
paddingHorizontal: 20,
marginBottom: 20,
backgroundColor: "#EDF0F7",
borderRadius: 50,
},
button: {
alignItems: "center",
justifyContent: "center",
height: 44,
backgroundColor: "#0065A4",
borderRadius: 50,
},
button_label: {
color: "#fff",
fontSize: 15,
},
login_social: {
width: "100%",
maxWidth: 280,
marginTop: 20,
},
login_social_separator: {
flexDirection: "row",
alignItems: "center",
},
login_social_separator_line: {
flex: 1,
width: "100%",
height: 1,
backgroundColor: "#E0E0E0",
},
login_social_separator_text: {
marginHorizontal: 10,
color: "#808080",
fontSize: 16,
paddingBottom: 6,
paddingTop: 6,
},
login_social_buttons: {
flexDirection: "row",
justifyContent: "center",
marginTop: 20,
},
login_social_button: {
alignItems: "center",
justifyContent: "center",
width: 60,
height: 60,
marginHorizontal: 12,
borderWidth: 1,
borderColor: "#E7E7E7",
borderRadius: 60,
},
login_social_icon: {
width: 38,
height: 38,
resizeMode: "contain",
},
login_social_facebook: {
backgroundColor: "#4267B2",
borderColor: "#4267B2",
},
login_footer_text: {
flexDirection: "row",
alignItems: "center",
color: "#808080",
fontSize: 15,
},
login_footer_link: {
color: "#208AEC",
fontSize: 15,
fontWeight: "bold",
},
});
export default Styles;