-
Notifications
You must be signed in to change notification settings - Fork 3
/
AppStyles.js
71 lines (70 loc) · 1.37 KB
/
AppStyles.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
import {StyleSheet} from 'react-native';
export default StyleSheet.create({
container: {
flex: 1,
backgroundColor: 'rgb(255, 255, 255)',
},
header: {
height: 80,
width: '100%',
backgroundColor: 'rgb(255, 255, 255)',
alignItems: 'stretch',
justifyContent: 'center',
zIndex: 1,
},
text: {
fontSize: 30,
color: '#fff',
},
list: {
backgroundColor: 'rgb(240, 240, 240)',
paddingVertical: 14,
},
item: {
paddingVertical: 14,
marginVertical: 10,
zIndex: 1,
},
itemText: {
color: 'rgb(0, 0, 0)',
fontSize: 20,
letterSpacing: 2,
fontWeight: 'bold',
paddingTop: 12,
},
likeText: {
color: 'rgb(255, 100, 0)',
fontWeight: '600',
fontSize: 16,
letterSpacing: 2,
},
itemImage: {
height: 400,
width: '100%',
},
cardRow: {
flexDirection: 'row',
justifyContent: 'space-between',
alignItems: 'baseline',
paddingHorizontal: 10,
},
infoText: {
fontSize: 12,
color: 'rgb(255, 100, 0)',
fontWeight: '900',
letterSpacing: 0.2,
lineHeight: 12,
textAlign: 'center',
zIndex: 2,
alignSelf: 'center',
position: 'absolute',
bottom: -24,
},
overlayLottie: {
...StyleSheet.absoluteFillObject,
zIndex: 10,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: 'rgba(240, 240, 240, 0.4)',
},
});