123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- import { StyleSheet} from 'react-native';
- const styles = StyleSheet.create({
-
- buttons: {
- flexDirection: 'row',
- justifyContent: 'center',
- marginTop: 40,
- marginBottom: 30,
- margin: 30,
- borderColor: "grey",
- borderRadius: 8,
- padding: (30, 16),
- backgroundColor: "black",
- marginTop: 0,
- },
- navContainer: {
- flexDirection: 'row',
- justifyContent: "space-evenly",
- borderColor: "black",
- borderWidth: 5,
- borderRadius: 8,
- paddingTop: 20,
- backgroundColor: "gray",
- marginTop: 5,
- },
- buttonContainer: {
- flexDirection: 'column',
- backgroundColor: '#f0f8ff',
- alignItems: 'center',
- justifyContent: 'center',
- paddingTop:100,
- marginTop: 40,
- },
- container: {
- flexDirection: 'column',
- justifyContent: 'center',
- backgroundColor: '#f0f8ff',
- alignItems: 'center',
- justifyContent: 'center',
- paddingTop:20,
- marginTop: 20,
- },
- containerbackground:{
-
- backgroundColor: '#f0f8ff'
- },
- intro: {
- fontWeight: "bold",
- color:"#black",
- fontSize: 30,
- },
-
- sub: {
- color:"#black",
- fontWeight: "bold",
- fontSize: 15,
- paddingBottom:10,
- },
-
- Navsub: {
- color:"#black",
- fontWeight: "bold",
- fontSize: 30,
- paddingBottom:10,
- },
- scrollView:{
- marginHorizontal: 20
- },
- listItem:{
- fontSize: 30,
- color: "white",
- textDecorationLines: "underline"
- },
- listButtons:{
- fontSize: 15,
- color: "white",
- textDecorationLines: "underline"
- },
- buttonsVer: {
- flexDirection: 'column',
- justifyContent: 'center',
- marginTop: 40,
- marginBottom: 30,
- margin: 30,
- borderColor: "grey",
- },
- bottom: {
- flex: 0.3,
- backgroundColor: "gray",
- borderWidth: 5,
- alignItems: 'center',
- borderBottomLeftRadius: 20,
- borderBottomRightRadius: 20,
-
- },text: {
- fontSize: 16,
- lineHeight: 21,
- fontWeight: 'bold',
- letterSpacing: 0.25,
- color: 'white',
- },
- });
-
- export {styles};
|