You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

87 lines
1.8 KiB

import {StyleSheet} from 'react-native';
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
padding: 12,
backgroundColor: 'rgba(9, 10, 32, 1)',
},
viewBnConfig: {
width: '100%',
flexDirection: 'row',
justifyContent: 'flex-end',
position: 'relative',
top: 0,
},
settingsButton: {
justifyContent: 'center',
alignSelf: 'center',
},
logoContainer: {
alignItems: 'center',
marginBottom: 18,
},
subtitle: {
fontSize: 16,
textAlign: 'center',
alignSelf: 'flex-start',
marginLeft: 34,
fontWeight: 'bold',
color: 'rgba(255,255,255,1)',
},
inner: {
marginVertical: 10,
padding: 12,
backgroundColor: 'rgba(18, 20, 55, 0.3)',
justifyContent: 'center',
alignItems: 'center',
borderRadius: 10,
},
titles: {
fontSize: 16,
fontWeight: 'bold',
marginBottom: 4,
letterSpacing: 1,
color: 'rgba(255,255,255,1)',
},
box: {
padding: 16,
alignItems: 'center',
marginBottom: 16,
},
idCall: {
fontSize: 34,
fontWeight: 'bold',
color: 'rgba(255,255,255,1)',
letterSpacing: 6,
},
buttonCall: {
backgroundColor: 'green',
borderRadius: 100,
paddingVertical: 12,
alignItems: 'center',
width: '60%',
marginTop: 16,
},
textInput: {
borderRadius: 10,
margin: 10,
fontSize: 30,
justifyContent: 'center',
alignSelf: 'center',
fontWeight: 'bold',
height: 60,
width: '60%',
backgroundColor: 'rgba(255,255,255,0.1)',
color: 'rgba(255,255,255,1)',
},
header: {
position: 'relative',
alignSelf: 'center',
top: -50,
height: 140,
},
});
export default styles;