-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.js
73 lines (52 loc) · 1.07 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
import { Animated } from 'react-native'
import styled from 'styled-components/native';
export const Container = styled.View`
flex: 1;
background: #8b10ae;
justify-content: center;
`;
export const Content = styled.View`
flex: 1;
max-height: 400px;
z-index: 5;
`;
export const Card = styled(Animated.View)`
flex: 1;
background: #fff;
border-radius: 4px;
margin: 0 20px;
height: 100%;
position: absolute;
left: 0;
right: 0;
top: 0px;
`;
export const CardHeader = styled.View`
flex-direction: row;
justify-content: space-between;
align-items: center;
padding: 30px;
`;
export const CardContent = styled.View`
flex: 1;
padding: 0 30px;
justify-content: center;
`;
export const Title = styled.Text`
font-size: 13px;
color: #999;
`;
export const Description = styled.Text`
font-size: 32px;
margin-top: 3px;
color: #333;
`;
export const CardFooter = styled.View`
padding: 30px;
background: #eee;
border-radius: 4px;
`;
export const Annotation = styled.Text`
font-size: 12px;
color: #333;
`;