-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.js
58 lines (56 loc) · 905 Bytes
/
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
import { StyleSheet } from 'react-native';
export const styles = StyleSheet.create({
container: {
flex: 1,
flexDirection: 'column',
backgroundColor: '#fff',
},
top: {
backgroundColor: '#ccc',
alignItems: 'center',
},
main: {
flex: 2,
backgroundColor: '#e3e3e3',
alignItems: 'center',
},
parent: {
flex: 1,
},
modalContainer: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
},
innerContainer: {
backgroundColor: 'grey',
padding: 8,
margin: 16,
},
correct: {
backgroundColor: '#0b6623',
},
wrong: {
backgroundColor: '#c21807',
},
textWhite: {
color: '#fff',
},
textTitle: {
fontSize: 22,
},
textSubtitle: {
fontSize: 16,
},
});
export const buttonStyles = StyleSheet.create({
container: {
flexDirection: 'column',
justifyContent: 'space-between',
backgroundColor: '#fff',
padding: 16,
},
answer: {
color: '#cfc'
},
});