-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.js
119 lines (117 loc) · 2.61 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
108
109
110
111
112
113
114
115
116
117
118
119
import { StyleSheet, Dimensions } from 'react-native'
const windowHeight = Dimensions.get('window').height * 0.12
const styles = StyleSheet.create({
container: {
flex: 6,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
header: {
flex: 1,
marginVertical: windowHeight,
justifyContent: 'center',
},
section: {
flex: 4,
justifyContent: 'center',
},
bottom: {
flex: 1,
flexDirection: 'row',
textAlign: 'center',
},
information: {
marginBottom: 200,
justifyContent: 'center',
backgroundColor: '#361999',
borderRadius: 10,
width: 300,
padding: 10,
marginLeft: Dimensions.get('window').width * 0.02,
},
infoHeader: {
fontSize: 30,
color: 'white',
},
infoText: {
fontSize: 15,
color: 'white',
},
importButton: {
backgroundColor: '#FF6495',
borderRadius: 10,
padding: 10,
elevation: 1,
textAlign: 'center',
alignItems: 'center',
},
button: {
marginVertical: 10,
backgroundColor: 'red',
},
welcomeText: {
fontSize: 50,
textAlign: 'center',
},
altText: {
fontSize: 20,
textAlign: 'center',
},
usage: {
fontSize: 17,
textAlign: 'center',
marginBottom: Dimensions.get('window').height * 0.01,
backgroundColor: '#FF6495',
color: 'white',
padding: 10,
borderRadius: 10,
marginVertical: 3,
},
modalView: {
margin: 20,
backgroundColor: '#361999',
borderRadius: 20,
padding: 35,
alignItems: 'center',
shadowColor: '#000',
shadowOffset: {
width: 0,
height: 2,
},
shadowOpacity: 0.25,
shadowRadius: 3.84,
elevation: 5,
},
openButton: {
backgroundColor: '#F194FF',
borderRadius: 10,
padding: 10,
elevation: 1,
marginVertical: 2,
margin: 5,
width: 150,
height: 50,
},
textStyle: {
color: 'white',
fontWeight: 'bold',
textAlign: 'center',
alignSelf: 'center',
height: 20,
maxWidth: 150,
},
modalText: {
marginBottom: 15,
textAlign: 'center',
color: 'white',
fontSize: 15,
},
centeredView: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
marginTop: 22,
},
})
module.exports = { styles }