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
132
133
134
135
136
137
138
|
import { createViewStyles, createTextStyles } from '../lib/styles';
export default Object.assign(createViewStyles({
settings: {
backgroundColor: '#192E45',
height: '100%'
},
settings__container:{
flexDirection: 'column',
height: '100%'
},
settings__header:{
flexGrow: 0,
flexShrink: 0,
flexBasis: 'auto',
paddingTop: 40,
paddingRight: 24,
paddingLeft: 24,
paddingBottom: 24,
},
settings__content: {
flexDirection: 'column',
flex: 1,
justifyContent: 'space-between',
height: '100%',
},
settings__scrollview: {
flexGrow: 1,
flexShrink: 1,
flexBasis: '100%',
},
settings__close: {
position: 'absolute',
top: 0,
left: 12,
borderWidth: 0,
padding: 0,
margin: 0,
zIndex: 1, /* part of .settings__close covers the button */
cursor: 'default',
},
settings__close_icon:{
width: 24,
height: 24,
flex: 0,
opacity: 0.6,
},
settings__cell:{
backgroundColor: 'rgba(41,71,115,1)',
paddingTop: 15,
paddingBottom: 15,
paddingLeft: 24,
paddingRight: 24,
marginBottom: 1,
flex: 1,
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'space-between'
},
settings__cell_disclosure:{
marginLeft: 8,
color: 'rgba(255, 255, 255, 0.8)',
width: 7,
height: 12,
},
settings__cell_spacer:{
height: 24,
flex: 0
},
settings__cell__active_hover:{
backgroundColor: 'rgba(41,71,115,0.9)'
},
settings__cell_icon:{
width: 16,
height: 16,
flexGrow: 0,
flexShrink: 0,
flexBasis: 'auto',
alignItems: 'flex-end',
color: 'rgba(255, 255, 255, 0.8)',
},
settings__footer_button:{
backgroundColor: 'rgba(208,2,27,1)',
paddingTop: 7,
paddingLeft: 12,
paddingRight: 12,
paddingBottom: 9,
borderRadius: 4,
alignItems: 'center',
},
settings__footer: {
paddingTop: 24,
paddingLeft: 24,
paddingRight: 24,
paddingBottom: 24,
},
}), createTextStyles({
settings__title:{
fontFamily: 'DINPro',
fontSize: 32,
fontWeight: '900',
lineHeight: 40,
color: '#FFFFFF'
},
settings__cell_label:{
fontFamily: 'DINPro',
fontSize: 20,
fontWeight: '900',
lineHeight: 26,
color: '#FFFFFF',
flexGrow: 1,
flexShrink: 0,
flexBasis: 'auto',
},
settings__footer_button_label:{
fontFamily: 'DINPro',
fontSize: 20,
fontWeight: '900',
lineHeight: 26,
color: 'rgba(255,255,255,0.8)'
},
settings__account_paid_until_label:{
fontFamily: 'Open Sans',
fontSize: 13,
fontWeight: '800',
color: 'rgba(255, 255, 255, 0.8)',
flexGrow: 0,
textAlign: 'right',
},
settings__account_paid_until_label__error:{
fontFamily: 'Open Sans',
fontSize: 13,
fontWeight: '800',
flexGrow: 0,
textAlign: 'right',
color: '#d0021b',
},
}));
|