forked from e888mon/Chainbytes_Dapp_Frontend
-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.js
103 lines (98 loc) · 1.99 KB
/
style.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
import { StyleSheet } from "react-native";
export const homeStyles = StyleSheet.create({
screen: {
alignItems: "flex-start",
justifyContent: "flex-start",
width: "100%",
height: "100%"
},
mainContainer: {
alignItems: "flex-start",
justifyContent: "flex-start",
width: "100%",
paddingLeft: 5,
paddingTop: 100,
backgroundColor: 'rgba(0,0,0,0)'
},
subContainer: {
alignItems: "flex-start",
justifyContent: "flex-start",
width: "100%",
paddingLeft: 35,
backgroundColor: 'rgba(0,0,0,0)'
},
mainText: {
fontSize: 50,
paddingBottom: 5,
paddingTop: 0,
marginTop: 0,
fontFamily: "HelveticaNeue-Bold"
},
subText: {
fontSize: 25,
paddingBottom: 5,
paddingTop: 0,
marginTop: 0,
fontFamily: "HelveticaNeue-Bold",
},
smolText: {
fontSize: 10,
color: "black",
paddingBottom: 5,
paddingTop: 0,
marginTop: 0,
},
image: {
height: 350,
width: 350,
borderRadius: 40,
},
imageView: {
justifyContent: "center",
alignSelf: "center",
alignItems: "center",
backgroundColor: 'red',
paddingTop: 20,
},
});
export const tabBarStyles = StyleSheet.create({
bottomTabs: {
position: "absolute",
flex: 1,
alignItems: "center",
justifyContent: "center",
bottom: '3%',
left: 15,
right: 15,
borderRadius: 15,
borderWeight: 2,
height: 55,
shadowColor: "lightgrey",
shadowOffset: { width: 0, height: 0, },
shadowOpacity: 0.6,
shadowRadius: 5,
},
tabBarItemStyle: {
backgroundColor: '#00ff00',
margin: 5,
height: '100%',
justifyContent: 'center',
alignItems: 'center'
},
bottomBar: {
backgroundColor: "#1e140a",
alignContent: "flex-end",
justifyContent: "flex-end",
},
mainText: {
fontSize: 20,
color: "white",
},
headerTitleStyle: {
fontSize: 20,
fontWeight: "800",
fontFamily: "HelveticaNeue-Bold",
}
})
export const listStyle = StyleSheet.create({
})