-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.tsx
101 lines (92 loc) · 2.34 KB
/
styles.tsx
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
import { StyleSheet, Text, TextInput, View } from 'react-native';
import { Colors } from 'react-native/Libraries/NewAppScreen';
const styles = StyleSheet.create({
container: {
flex: 1,
alignItems: 'center',
justifyContent: 'space-around',
backgroundColor: "#fff",
fontFamily: 'BebasNeue_400Regular',
paddingLeft: 28,
paddingRight: 28,
paddingBottom: 32,
paddingTop: 32
}, outer: {
flex: 1,
},
searchBox: {
display: "flex",
flexDirection: "row",
backgroundColor: '#fff',
alignItems: "center",
justifyContent: "space-between",
},
locationInput: {
padding: 5,
margin: 10,
height: 40,
borderRadius: 7,
borderColor: 'gray',
borderWidth: 1,
backgroundColor: 'transparent',
},
search: {
},
notFound: {
justifyContent: "center",
alignItems: "center"
},
notFoundText: {
textAlign: "center",
marginLeft: "auto",
marginRight: "auto",
}, weather: {
justifyContent: "center",
display: "flex",
alignItems: "center",
}, textInputWrapper: {
width: "100%",
margin: 0,
padding: 0,
}, weatherImage: {
width: '100%',
height: undefined,
aspectRatio: 1,
resizeMode: 'contain',
}, row: {
display: "flex",
flexDirection: "row",
}, col: {
display: "flex",
flexDirection: "column",
}, temp: {
display: "flex",
flexDirection: "row",
justifyContent: "space-between",
}, desc: {
display: "flex",
flexDirection: "row",
justifyContent: "space-between",
}, weatherDetails: {
display: "flex",
flexDirection: "row",
justifyContent: "space-around",
marginTop: 25
}, humidity: {
display: "flex",
flexDirection: "column",
width: "50%",
justifyContent: "space-around",
}, wind: {
display: "flex",
flexDirection: "column",
width: "50%",
}, iconLeft: {
margin: 5,
padding: 5
}, textRight: {
flexDirection: "column",
width: "50%"
}
});
export default styles;