2020-08-10 17:41:10 -04:00
|
|
|
import {StyleSheet, StatusBar} from 'react-native';
|
|
|
|
|
|
|
|
const styles = StyleSheet.create({
|
|
|
|
container: {
|
|
|
|
flex: 1,
|
2020-11-07 08:55:23 -05:00
|
|
|
marginTop: StatusBar.currentHeight || 0
|
2020-08-10 17:41:10 -04:00
|
|
|
},
|
|
|
|
item: {
|
2020-11-06 16:34:17 -05:00
|
|
|
backgroundColor: 'white',
|
2020-08-10 17:41:10 -04:00
|
|
|
padding: 20,
|
2020-10-18 22:53:27 -04:00
|
|
|
borderBottomWidth: 1.5,
|
2020-11-06 16:34:17 -05:00
|
|
|
borderColor: 'black'
|
2020-08-10 17:41:10 -04:00
|
|
|
},
|
2020-10-20 23:12:33 -04:00
|
|
|
item1: {
|
|
|
|
backgroundColor: 'white',
|
|
|
|
padding: 15,
|
|
|
|
borderBottomWidth: 2,
|
|
|
|
borderColor: '#bababa',
|
|
|
|
width: '100%',
|
|
|
|
},
|
2020-08-10 17:41:10 -04:00
|
|
|
title: {
|
2020-10-18 22:53:27 -04:00
|
|
|
fontSize: 28,
|
2020-08-10 17:41:10 -04:00
|
|
|
},
|
2020-08-13 18:55:10 -04:00
|
|
|
date: {
|
|
|
|
fontSize:12,
|
|
|
|
marginBottom:'-3%',
|
|
|
|
alignSelf:'flex-end',
|
|
|
|
marginTop:'-3%',
|
|
|
|
marginRight:'-3%'
|
2020-10-21 15:35:35 -04:00
|
|
|
},
|
|
|
|
title1: {
|
|
|
|
fontSize: 28,
|
|
|
|
fontWeight: 'bold',
|
|
|
|
},
|
2020-10-25 02:57:39 -04:00
|
|
|
title2: {
|
|
|
|
fontSize: 22,
|
|
|
|
fontWeight: 'bold',
|
|
|
|
color: 'red',
|
|
|
|
textDecorationLine: 'underline',
|
|
|
|
textDecorationStyle: "solid",
|
|
|
|
textDecorationColor: "red",
|
|
|
|
},
|
2020-10-21 15:35:35 -04:00
|
|
|
link: {
|
|
|
|
fontSize: 28,
|
|
|
|
textDecorationLine: 'underline',
|
|
|
|
textDecorationStyle: "solid",
|
|
|
|
textDecorationColor: "#000",
|
|
|
|
},
|
|
|
|
infoContainer: {
|
|
|
|
backgroundColor: 'white',
|
|
|
|
borderRadius: 6,
|
|
|
|
padding: 5,
|
|
|
|
marginBottom: 10,
|
2020-10-25 02:57:39 -04:00
|
|
|
},
|
|
|
|
headerTitle: {
|
|
|
|
fontSize: 24,
|
|
|
|
},
|
|
|
|
eventTitle: {
|
|
|
|
textAlign: 'center',
|
|
|
|
fontSize: 32,
|
|
|
|
fontWeight: 'bold',
|
|
|
|
padding: 5,
|
|
|
|
marginBottom: 10,
|
2020-11-06 16:34:17 -05:00
|
|
|
},
|
|
|
|
linktext: {
|
|
|
|
color:'blue',
|
|
|
|
textDecorationLine: 'underline'
|
2020-08-13 18:55:10 -04:00
|
|
|
}
|
2020-08-10 17:41:10 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
export default styles;
|