2018-06-08 10:13:45 +02:00
|
|
|
import { StyleSheet } from 'react-native';
|
|
|
|
import Colors from './colors';
|
|
|
|
|
|
|
|
const firstRunStyle = StyleSheet.create({
|
|
|
|
screenContainer: {
|
|
|
|
flex: 1,
|
|
|
|
backgroundColor: Colors.LbryGreen
|
|
|
|
},
|
|
|
|
container: {
|
|
|
|
flex: 9,
|
|
|
|
justifyContent: 'center',
|
|
|
|
backgroundColor: Colors.LbryGreen
|
|
|
|
},
|
|
|
|
title: {
|
2018-12-11 21:06:42 +01:00
|
|
|
fontFamily: 'Inter-UI-SemiBold',
|
2018-06-08 10:13:45 +02:00
|
|
|
fontSize: 40,
|
|
|
|
marginLeft: 32,
|
|
|
|
marginRight: 32,
|
|
|
|
marginBottom: 32,
|
|
|
|
color: Colors.White
|
|
|
|
},
|
|
|
|
paragraph: {
|
2018-12-11 21:06:42 +01:00
|
|
|
fontFamily: 'Inter-UI-Regular',
|
2018-06-08 10:13:45 +02:00
|
|
|
fontSize: 18,
|
|
|
|
lineHeight: 24,
|
|
|
|
marginLeft: 32,
|
|
|
|
marginRight: 32,
|
|
|
|
marginBottom: 20,
|
|
|
|
color: Colors.White
|
|
|
|
},
|
2018-08-16 11:48:34 +02:00
|
|
|
infoParagraph: {
|
2018-12-11 21:06:42 +01:00
|
|
|
fontFamily: 'Inter-UI-Regular',
|
2018-08-16 11:48:34 +02:00
|
|
|
fontSize: 14,
|
|
|
|
lineHeight: 20,
|
|
|
|
marginLeft: 32,
|
|
|
|
marginRight: 32,
|
|
|
|
marginBottom: 20,
|
|
|
|
color: Colors.White
|
|
|
|
},
|
|
|
|
emailInput: {
|
2018-12-11 21:06:42 +01:00
|
|
|
fontFamily: 'Inter-UI-Regular',
|
2018-08-16 11:48:34 +02:00
|
|
|
fontSize: 24,
|
|
|
|
lineHeight: 24,
|
|
|
|
marginLeft: 32,
|
|
|
|
marginRight: 32,
|
|
|
|
marginBottom: 20,
|
|
|
|
textAlign: 'center'
|
|
|
|
},
|
|
|
|
leftButton: {
|
2018-06-08 10:13:45 +02:00
|
|
|
flex: 1,
|
2018-08-16 11:48:34 +02:00
|
|
|
alignSelf: 'flex-start',
|
|
|
|
marginLeft: 32,
|
|
|
|
marginRight: 32
|
|
|
|
},
|
|
|
|
bottomContainer: {
|
|
|
|
flex: 1
|
|
|
|
},
|
|
|
|
actionButton: {
|
|
|
|
backgroundColor: Colors.White,
|
|
|
|
alignSelf: 'center',
|
2018-12-11 21:06:42 +01:00
|
|
|
fontFamily: 'Inter-UI-Regular',
|
2018-08-16 11:48:34 +02:00
|
|
|
fontSize: 12,
|
|
|
|
paddingLeft: 16,
|
|
|
|
paddingRight: 16
|
|
|
|
},
|
|
|
|
button: {
|
2018-06-08 10:13:45 +02:00
|
|
|
alignSelf: 'flex-end',
|
2018-10-23 16:52:44 +02:00
|
|
|
padding: 20,
|
|
|
|
paddingLeft: 32,
|
|
|
|
paddingRight: 32
|
2018-06-08 10:13:45 +02:00
|
|
|
},
|
|
|
|
buttonText: {
|
2018-12-11 21:06:42 +01:00
|
|
|
fontFamily: 'Inter-UI-Regular',
|
2018-08-16 11:48:34 +02:00
|
|
|
fontSize: 24,
|
2018-06-08 10:13:45 +02:00
|
|
|
color: Colors.White
|
2018-08-16 11:48:34 +02:00
|
|
|
},
|
|
|
|
waiting: {
|
|
|
|
marginBottom: 24
|
|
|
|
},
|
|
|
|
pageWaiting: {
|
|
|
|
alignSelf: 'center'
|
2018-06-08 10:13:45 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
export default firstRunStyle;
|