|
@@ -0,0 +1,104 @@
|
|
1
|
+import { StyleSheet} from 'react-native';
|
|
2
|
+const styles = StyleSheet.create({
|
|
3
|
+
|
|
4
|
+ buttons: {
|
|
5
|
+ flexDirection: 'row',
|
|
6
|
+ justifyContent: 'center',
|
|
7
|
+ marginTop: 40,
|
|
8
|
+ marginBottom: 30,
|
|
9
|
+ margin: 30,
|
|
10
|
+ borderColor: "grey",
|
|
11
|
+ borderRadius: 8,
|
|
12
|
+ padding: (30, 16),
|
|
13
|
+ backgroundColor: "black",
|
|
14
|
+ marginTop: 0,
|
|
15
|
+ },
|
|
16
|
+ navContainer: {
|
|
17
|
+ flexDirection: 'row',
|
|
18
|
+ justifyContent: "space-evenly",
|
|
19
|
+ borderColor: "black",
|
|
20
|
+ borderWidth: 5,
|
|
21
|
+ borderRadius: 8,
|
|
22
|
+ paddingTop: 20,
|
|
23
|
+ backgroundColor: "gray",
|
|
24
|
+ marginTop: 5,
|
|
25
|
+},
|
|
26
|
+ buttonContainer: {
|
|
27
|
+ flexDirection: 'column',
|
|
28
|
+ backgroundColor: '#f0f8ff',
|
|
29
|
+ alignItems: 'center',
|
|
30
|
+ justifyContent: 'center',
|
|
31
|
+ paddingTop:100,
|
|
32
|
+ marginTop: 40,
|
|
33
|
+ },
|
|
34
|
+ container: {
|
|
35
|
+ flexDirection: 'column',
|
|
36
|
+ justifyContent: 'center',
|
|
37
|
+ backgroundColor: '#f0f8ff',
|
|
38
|
+ alignItems: 'center',
|
|
39
|
+ justifyContent: 'center',
|
|
40
|
+ paddingTop:20,
|
|
41
|
+ marginTop: 20,
|
|
42
|
+ },
|
|
43
|
+ containerbackground:{
|
|
44
|
+
|
|
45
|
+ backgroundColor: '#f0f8ff'
|
|
46
|
+ },
|
|
47
|
+ intro: {
|
|
48
|
+ fontWeight: "bold",
|
|
49
|
+ color:"#black",
|
|
50
|
+ fontSize: 30,
|
|
51
|
+ },
|
|
52
|
+
|
|
53
|
+ sub: {
|
|
54
|
+ color:"#black",
|
|
55
|
+ fontWeight: "bold",
|
|
56
|
+ fontSize: 15,
|
|
57
|
+ paddingBottom:10,
|
|
58
|
+},
|
|
59
|
+
|
|
60
|
+ Navsub: {
|
|
61
|
+ color:"#black",
|
|
62
|
+ fontWeight: "bold",
|
|
63
|
+ fontSize: 30,
|
|
64
|
+ paddingBottom:10,
|
|
65
|
+ },
|
|
66
|
+ scrollView:{
|
|
67
|
+ marginHorizontal: 20
|
|
68
|
+ },
|
|
69
|
+ listItem:{
|
|
70
|
+ fontSize: 30,
|
|
71
|
+ color: "white",
|
|
72
|
+ textDecorationLines: "underline"
|
|
73
|
+ },
|
|
74
|
+ listButtons:{
|
|
75
|
+ fontSize: 15,
|
|
76
|
+ color: "white",
|
|
77
|
+ textDecorationLines: "underline"
|
|
78
|
+ },
|
|
79
|
+ buttonsVer: {
|
|
80
|
+ flexDirection: 'column',
|
|
81
|
+ justifyContent: 'center',
|
|
82
|
+ marginTop: 40,
|
|
83
|
+ marginBottom: 30,
|
|
84
|
+ margin: 30,
|
|
85
|
+ borderColor: "grey",
|
|
86
|
+ },
|
|
87
|
+ bottom: {
|
|
88
|
+ flex: 0.3,
|
|
89
|
+ backgroundColor: "gray",
|
|
90
|
+ borderWidth: 5,
|
|
91
|
+ alignItems: 'center',
|
|
92
|
+ borderBottomLeftRadius: 20,
|
|
93
|
+ borderBottomRightRadius: 20,
|
|
94
|
+
|
|
95
|
+},text: {
|
|
96
|
+ fontSize: 16,
|
|
97
|
+ lineHeight: 21,
|
|
98
|
+ fontWeight: 'bold',
|
|
99
|
+ letterSpacing: 0.25,
|
|
100
|
+ color: 'white',
|
|
101
|
+ },
|
|
102
|
+});
|
|
103
|
+
|
|
104
|
+export {styles};
|