-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStyles.js
107 lines (95 loc) · 1.83 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
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
import { Dimensions } from "react-native";
export const dimensions = {
fullHeight: Dimensions.get("window").height,
fullWidth: Dimensions.get("window").width
};
export const colorStyle = {
orange: "#ff9616",
black: "#000",
milky: "#F5FCFF",
green: "#15a52d",
activeTintColor: "#E0F7FA",
activeBackgroundColor: "#00ACC1",
inactiveTintColor: "#80DEEA",
tabBarBackground: "#00BCD4",
};
export const fontStyle = {
sm: 14,
md: 16,
lg: 21,
extra: 25,
description: {
color: "#000",
fontSize: 16,
},
title : {
color: "#000",
fontSize: 21,
},
boldText: {
color: "#000",
fontSize: 21,
fontWeight: "600"
}
};
export const containerStyle = {
flex: 1,
flexDirection: "column",
justifyContent: "space-evenly",
alignItems: "center"
};
export const inputStyle = {
borderWidth: 2,
height: 45,
width: 240,
borderRadius: 5,
marginBottom: 20
};
export const centrify = {
justifyContent: "center",
alignItems: "center"
};
export const imputsMargin = {
marginBottom: 13
};
export const LoginScreenStyle = {
logoPic: {
width: 200,
height: 50,
justifyContent: "flex-start",
alignItems: "center",
marginTop: 55
}
};
export const accordion = {
marginTop: 5,
marginLeft: 5,
fontStyle: "italic"
}
export const BlockTemplateStyle = {
cardStyle: {
width: "96%",
marginLeft: "2%",
top: 4,
borderColor: "#f0f0",
borderBottomEndRadius: 10,
borderBottomStartRadius: 5,
marginBottom: 10
},
cardImageStyle: {
width: "100%",
height: 255,
flex: 1
}
};
export const BasePageTemplateStyle = {
logo: {
width: 270
},
icon: {
borderWidth: 3,
borderRadius: 200,
width: 230,
height: 230
}
}