-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.js
131 lines (129 loc) · 3.1 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
import {StyleSheet} from 'react-native';
export default StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#1F1F1F'
},
homeScreenStatTrackerView: {
flex:.4,
margin:10,
flexDirection:'column',
borderRadius:5,
backgroundColor: 'rgba(43, 75, 149, 0.25)',
justifyContent:'center',
alignItems: 'center'
},
homeScreenStatTrackerInputView: {
flex: 1,
flexDirection: 'row',
},
homeScreenStatTrackerTextInputView: {
flex: .85,
justifyContent: 'space-between',
flexDirection: 'column',
margin:10,
},
sectionTitleTextStyle: {
color:'#ffffff',
fontSize:20,
fontWeight:"bold"
},
subTitleTextStyle: {
color:'#ffffff',
fontSize:30,
fontWeight:"bold"
},
activityIndicatorStyle: {
position: 'absolute',
alignItems: 'center',
justifyContent: 'center',
left: 0,
right: 0,
top: 0,
bottom: 0,
backgroundColor: 'rgba(43, 75, 149, 0.25)',
},
homeScreenButtonStyle: {
flex:1,
margin:10,
borderRadius:5,
borderWidth:2,
borderColor:'#9d4dbb',
backgroundColor:'rgba(43, 75, 149, 0.25)',
alignItems:'center',
justifyContent:'center'
},
homeScreenButtonText:{
color:'#ffffff',
fontSize:20,
fontWeight:'bold',
textAlign:'center'
},
weeksList: {
flex:1,
margin:10,
padding:25,
borderRadius:5,
borderWidth:2,
justifyContent:'space-evenly',
borderColor:'#9d4dbb',
backgroundColor:'rgba(43, 75, 149, 0.25)',
color:'#ffffff',
fontSize:40,
fontWeight:'bold',
textAlign:'center'
},
challengeList:{
flex:1,
margin:10,
padding:25,
borderRadius:5,
borderWidth:2,
justifyContent:'space-evenly',
borderColor:'#9d4dbb',
backgroundColor:'rgba(43, 75, 149, 0.25)',
color:'white',
fontSize:18,
fontWeight:'bold',
textAlign:'center'
},
dropButtonStyle: {
flex:0.1,
margin:15,
borderRadius:5,
borderWidth:2,
borderColor:'#9d4dbb',
backgroundColor:'rgba(43, 75, 149, 0.25)',
alignItems:'center',
justifyContent:'center'
},
weaponStatTitle: {
fontSize:15,
fontWeight:'bold',
color: '#ffffff',
margin:2
},
controlScreenInputView: {
flex: 1,
justifyContent: 'space-between',
margin: 10,
borderRadius: 5,
backgroundColor:'rgba(43, 75, 149, 0.25)',
},
controlScreenImageView: {
flex: 2,
alignItems:'center',
margin: 10,
},
controlScreenPickerBar: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
margin :10,
borderRadius: 5, borderWidth: 2, borderColor: '#9d4dbb' ,
},
controlImage: {
flex: 1,
width: '95%'
}
})