-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.styles.js
127 lines (126 loc) · 2.39 KB
/
App.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
117
118
119
120
121
122
123
124
125
126
127
import { StatusBar, Platform, StyleSheet } from 'react-native'
export default StyleSheet.create({
safeArea: {
flex: 1,
backgroundColor: '#000',
},
appWrapper: {
flexGrow: 1,
backgroundColor: '#000',
alignItems: 'stretch',
paddingTop: Platform.OS === 'ios' ? 20 : StatusBar.currentHeight,
},
appContainer: {
position: 'relative',
flex: 1,
alignItems: 'stretch',
backgroundColor: '#333',
paddingBottom: 16,
},
clockControlContainer: {
position: 'absolute',
top: 0,
right: 0,
flexDirection: 'row',
alignItems: 'center',
paddingTop: 14,
paddingRight: 16,
},
headingContainer: {
flexDirection: 'row',
alignItems: 'center',
backgroundColor: '#000',
padding: 8,
},
headingLogo: {
width: 20,
height: 20,
},
headingText: {
color: '#fff',
textAlign: 'center',
fontSize: 16,
fontWeight: '900',
letterSpacing: 3,
paddingLeft: 4,
},
subheadingContainer: {
backgroundColor: '#fff',
},
subheadingText: {
color: '#278eca',
fontSize: 20,
fontWeight: '700',
letterSpacing: -1,
backgroundColor: '#fff',
paddingTop: 16,
paddingLeft: 16,
},
subheadingUnderline: {
backgroundColor: '#278eca',
width: 32,
height: 2,
marginTop: 8,
marginBottom: 8,
marginLeft: 16,
},
timeContainer: {
flex: 0,
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'center',
backgroundColor: '#fff',
},
timeDisplay: {
padding: 4,
},
timePicker: {
width: 60,
height: 40,
borderColor: '#ccc',
borderWidth: 2,
},
isAfternoonContainer: {
flexDirection: 'row',
alignItems: 'center',
},
errorMessage: {
position: 'absolute',
bottom: 0,
},
degreeContainer: {
backgroundColor: '#333',
},
primaryTextContainer: {
paddingLeft: 8,
paddingRight: 8,
},
grayheadingContainer: {
backgroundColor: '#333',
},
grayheadingText: {
color: '#fff',
fontSize: 18,
fontWeight: '700',
letterSpacing: -1,
backgroundColor: '#333',
paddingTop: 16,
paddingLeft: 16,
},
secondaryTextContainer: {
backgroundColor: '#333',
paddingTop: 8,
paddingLeft: 16,
paddingRight: 20,
},
secondaryText: {
color: '#fff',
lineHeight: 20,
},
degreeText: {
color: '#278eca',
fontWeight: '900',
lineHeight: 20,
marginRight: 8,
},
})