-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobal-styles.ts
129 lines (114 loc) · 2.36 KB
/
global-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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
import { StyleSheet } from "react-native";
export const gs = StyleSheet.create({
bigTitle: {
fontSize: 40,
fontWeight: "bold",
marginBottom: 12,
},
repContainer: {
backgroundColor: "#FFF",
borderRadius: 10,
padding: 12,
marginBottom: 12,
shadowColor: "#000",
shadowOpacity: 0.1,
shadowRadius: 5,
shadowOffset: { width: 0, height: 3 },
},
repText: {
fontSize: 16,
},
repSecondaryText: {
fontSize: 14,
color: "#888",
marginTop: 10,
},
button: {
backgroundColor: "lightgreen",
paddingVertical: 10,
paddingHorizontal: 20,
borderRadius: 5,
alignItems: "center",
justifyContent: "center",
height: 50,
shadowColor: "#000",
shadowOpacity: 0.1,
shadowRadius: 5,
shadowOffset: { width: 0, height: 3 },
},
smallButton: {
backgroundColor: "lightgreen",
borderRadius: 5,
alignItems: "center",
justifyContent: "center",
shadowColor: "#000",
shadowOpacity: 0.1,
shadowRadius: 5,
shadowOffset: { width: 0, height: 3 },
padding: 10,
alignSelf: "flex-start",
},
h2: {
marginVertical: 6,
fontSize: 16,
fontWeight: "bold",
},
label: {
color: "gray",
marginVertical: 12,
},
text: {
fontSize: 16,
},
secondaryText: {
fontSize: 14,
color: "#888",
},
noteContainer: {
backgroundColor: "lightyellow",
borderRadius: 10,
padding: 12,
marginBottom: 12,
shadowColor: "#000",
shadowOpacity: 0.1,
shadowRadius: 5,
shadowOffset: { width: 0, height: 3 },
},
flatlist: {
padding: 16,
},
itemContainer: {
flexDirection: "row",
backgroundColor: "#FFF",
borderRadius: 10,
padding: 12,
marginBottom: 12,
shadowColor: "#000",
shadowOpacity: 0.1,
shadowRadius: 5,
shadowOffset: { width: 0, height: 3 },
width: "100%",
},
shelvedContainer: {
flexDirection: "row",
backgroundColor: "#e6e6e6",
borderRadius: 10,
padding: 12,
marginBottom: 12,
shadowColor: "#000",
shadowOpacity: 0.1,
shadowRadius: 5,
shadowOffset: { width: 0, height: 3 },
width: "100%",
},
activityContainer: {
backgroundColor: "#c7f2ff",
borderRadius: 10,
padding: 12,
marginBottom: 12,
shadowColor: "#000",
shadowOpacity: 0.1,
shadowRadius: 5,
shadowOffset: { width: 0, height: 3 },
},
});