-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.js
54 lines (53 loc) · 1.04 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
import StyleSheet from 'react-native';
export default styles = StyleSheet.create({
appContainer: {
flex: 1
},
headerContainer: {
height: '15%',
alignItems: 'center',
justifyContent: 'center',
backgroundColor: 'rgb(234, 34, 45)',
backgroundColor: 'black',
},
header: {
fontFamily: 'press-start-2p',
color: 'white',
fontSize: 45,
paddingTop: 32,
top: 10
},
center: {
height: '30%',
alignItems: 'center',
backgroundColor: 'rgb(234, 34, 45)',
},
mainImg: {
width: 700,
height: 300,
position: 'relative',
bottom: 25,
shadowOpacity: 1,
shadowRadius: 23,
},
mainMenuContainer: {
height: '58%',
backgroundColor: 'rgb(234, 34, 45)',
// backgroundColor: 'black',
},
buttonContainer: {
marginTop: 20,
marginLeft: 50,
marginRight: 50,
padding: 15,
backgroundColor: '#FFF',
borderWidth: 3,
borderRadius: 40,
},
button: {
fontFamily: 'press-start-2p',
color: 'black',
textAlign: 'center',
padding: 12,
},
});