blazerapp/app/styles/liststyles.js

69 lines
1.3 KiB
JavaScript
Raw Normal View History

2020-08-10 17:41:10 -04:00
import {StyleSheet, StatusBar} from 'react-native';
const styles = StyleSheet.create({
container: {
flex: 1,
marginTop: StatusBar.currentHeight || 0,
},
item: {
backgroundColor: '#bababa',
padding: 20,
marginHorizontal: 16,
borderBottomWidth: 1.5,
borderColor: 'black',
borderRadius: 12,
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: {
fontSize: 28,
2020-08-10 17:41:10 -04:00
},
date: {
fontSize:12,
marginBottom:'-3%',
alignSelf:'flex-end',
marginTop:'-3%',
marginRight:'-3%'
},
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",
},
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-08-10 17:41:10 -04:00
});
export default styles;