-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.js
116 lines (114 loc) · 2.24 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
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
import {Dimensions, StyleSheet} from "react-native";
const styles = StyleSheet.create({
container: {
flex: 1,
},
bg: {
flex: 1,
height: Dimensions.get('window').height + 40,
paddingVertical: 60,
paddingHorizontal: 20,
},
searchbarContainer: {
height: 50,
borderWidth: 2,
borderColor: '#ffffff',
display: 'flex',
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'space-evenly',
borderRadius: 40,
backgroundColor: 'rgba(255, 255, 255, 0.4)',
},
textInput: {
height: 48,
width: 280,
paddingHorizontal: 20,
fontSize: 24,
color: '#ffffff',
},
townContainer: {
height: 180,
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
},
townText: {
fontSize: 62,
fontWeight: 'bold',
color: '#ffffff',
},
latLonContainer: {
height: 30,
display: 'flex',
flexDirection: 'row',
justifyContent: 'space-between',
alignItems: 'center',
},
latLonText: {
color: '#ffffff',
fontWeight: 'bold',
fontSize: 16,
},
tempContainer: {
height: 100,
display: "flex",
justifyContent: 'center',
alignItems: 'center',
},
tempText: {
color: '#ffffff',
fontWeight: 'bold',
fontSize: 36,
},
iconContainer: {
height: 150,
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
},
weatherContainer: {
height: 50,
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
},
weatherText: {
fontSize: 24,
fontWeight: 'bold',
color: '#ffffff',
},
gridContainer: {
height: 200,
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
},
gridRow: {
height: 40,
width: 300,
display: 'flex',
flexDirection: 'row',
},
cell1: {
width: 50,
display: 'flex',
justifyContent: 'center',
},
cell2: {
width: 150,
display: 'flex',
justifyContent: 'center',
},
cell3: {
width: 100,
display: 'flex',
justifyContent: 'center',
},
cellText: {
fontWeight: 'bold',
color: '#ffffff',
fontSize: 15,
},
});
export default styles;