-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.ts
74 lines (64 loc) · 1.25 KB
/
styles.ts
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
import { Dimensions, StyleSheet } from 'react-native';
const { width } = Dimensions.get('window');
export const styles = StyleSheet.create({
container: {
flex: 1,
flexDirection: 'column',
backgroundColor: 'white',
},
Heading4: {
color: 'white',
fontSize: 32,
fontWeight: '700',
paddingLeft: 29,
paddingBottom: 10,
textAlign: 'left',
},
imageContainer: {
width: '100%',
height: width * (8 / 9),
position: 'relative',
},
responsiveImage: {
width: '100%',
height: '100%',
resizeMode: 'cover',
},
overlay: {
position: 'absolute',
top: 0,
left: 0,
right: 0,
bottom: 0,
backgroundColor: 'rgba(0, 0, 0, 0.5)',
justifyContent: 'flex-end',
alignItems: 'flex-start',
paddingBottom: 30,
},
contactInfo: {
position: 'absolute',
top: 360,
bottom: 0,
left: 0,
right: 0,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: 'white',
borderRadius: 20,
},
contactText: {
color: '#4F4F4F',
fontSize: 14,
marginBottom: 50,
},
managerText: {
color: '#4F4F4F',
fontSize: 14,
marginBottom: 10,
fontWeight: 'bold',
},
iconColor: {
color: '#446127',
marginBottom: 20,
},
});